쌍용강북교육센터/7월
0715_Ex06_this
호쏘2
2021. 7. 18. 01:58
public class Ex06_this {
public static void main(String[] args) {
Test6 t = new Test6();
t.set(5);
t.print();
Test6 t2 = new Test6();
t2.set(3);
t2.print();
}
}
class Test6 {
private int a;
private int b;
public void set(int b) {
// this : 호출한 객체
this.a = 10;
this.b = b + 100;
// this.b : 호출한 객체의 필드, b : 매개변수
}
public void print() {
System.out.println("a: "+this.a+", b: "+this.b);
}
}