2013년 8월 1일 목요일

java.util.ArrayList 클래스 – 예제

import java.util.*;

/**
 * ArrayListDemo done over using an ArrayList
 */
public class ArrayListDemo {
        public static void main(String[] argv) {
                ArrayList al = new ArrayList();

                // Create a source of Objects
                StructureDemo source = new StructureDemo(15);

                // Add lots of elements to the ArrayList...
                al.add(source.getDate());
                al.add(source.getDate());
                al.add(source.getDate());

                // First print them out using a for loop.
                System.out.println("Retrieving by index:");
                for (int i = 0; i<al.size(); i++) {
                        System.out.println("Element " + i + " = " + al.get(i));
                }
        }
}

댓글 없음:

댓글 쓰기