자바 백터 개념 구조체와 비슷하게 묶음단위의 개체를 생성한다. 타입은 어느타입이라도 가능하며 (String, int , boolean 등) 바로 출력을 하거나 elementAt(i) 를 이용하여 선택출력이 가능하다. public class Chat extends Frame { public static void main(String[] args) { String[] city = new String[3]; city[0] = "jonhro5"; city[1] = "busan"; city[2] = "suwon"; for(int i =0; i < city.length; i++) System.out.println(city[i]); Vector vt = new Vector();//기본사이즈가 10개씩 만들어짐 vt.add("sky".. 더보기 이전 1 ··· 351 352 353 354 355 356 357 ··· 381 다음