package ch11;
import ch10.Zealot;
public class MainTest2 {
public static void main(String[] args) {
int[] num = new int[12];
Zealot[] zealots = new Zealot[12];
//배열은 for문과 함께 많이 사용
for (int i = 0; i < zealots.length; i++) {
zealots[i] = new Zealot("질럿" + (i+1));
}//블록의 유효범위
zealots[0].showInfo();
//문제 showInfo - for 문 사용해서 출력
for (int i = 0; i < zealots.length; i++) {
zealots[i].showInfo();
}
}
}
'Java > chapter2' 카테고리의 다른 글
ch12 ArrayListMainTest (0) | 2021.08.27 |
---|---|
ch12 Book(Array) (0) | 2021.08.27 |
ch11 ArrayMainTest (0) | 2021.08.26 |
ch10 StarCraft MainTest (0) | 2021.08.26 |
ch10 Zergling Zealot Marine (0) | 2021.08.26 |