- this?
자기 자신 클래스를 가르킴.
객체 자신에 대한 참조값을 갖는다.
this를 사용함으로서 모호하지 않고 명확한 프로그램을 작성할 수 있다.
public class AClass { Integer i; Integer j; static int TEMP = 10; // 생성자 public AClass(Integer i, Integer j) { super(); this.i = i; // AClass클래스의 변수를 가르킴. this.j = j; } } | cs |
this.i 는 AClass의 i를 뜻한다.