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);
    }
}

'쌍용강북교육센터 > 7월' 카테고리의 다른 글

0715_Ex08_this  (0) 2021.07.18
0715_Ex07_this  (0) 2021.07.18
0715_Ex05_매개변수, 필드  (0) 2021.07.17
0715_Ex04_constructor : 생성자  (0) 2021.07.17
0715_Ex03_constructor : 생성자  (0) 2021.07.17

+ Recent posts