package ch01;
public class Warrior {
//멤버 변수(상태)
int height;
int power;
String color;
String name;
}
package ch01;
public class MainTest2 {
//설계된 클래스를 사용하는 쪽 코딩
public static void main(String[] args) {
Warrior w1 = new Warrior();
w1.height = 200;
w1.power = 100;
w1.name = "오크1";
w1.color = "초록색";
Warrior w2 = new Warrior(); //메모리에 올리다.
w2.height = 100;
w2.power = 50;
w2.name = "미니전사";
w2.color = "빨간색";
}
}
'Java > chapter2' 카테고리의 다른 글
ch02 FormainTest1 (0) | 2021.08.25 |
---|---|
ch02 Student 메서드 (0) | 2021.08.23 |
ch01 FunctionTest (0) | 2021.08.23 |
ch01 Order (0) | 2021.08.23 |
ch01 Student (0) | 2021.08.23 |