note

this 레퍼런스 본문

자바/생성자

this 레퍼런스

투한 2011. 12. 16. 15:47
public class ThisTest {//레퍼런스 this(생성자)
	
	public ThisTest(){
		System.out.println("객체생성 : "+this);
		//참조 변수의 일종 this
	}
	public static void main(String[] args){
		ThisTest tt = new ThisTest();
		System.out.println("객체 생성후 : "+tt);
		//this는 객체 내부에서만 작동하기 때문에 따로 클래스를 만들어 객체화
	}
}

객체생성 : ThisTest@c05d3b
객체 생성후 : ThisTest@c05d3b


'자바 > 생성자' 카테고리의 다른 글

생성자 기본  (0) 2011.12.16
생성자 내에 또다른 생성자를 호출  (0) 2011.12.16
생성자 오버로딩  (0) 2011.12.16
은닉화 생성자 오버로딩  (0) 2011.12.16
생성자 정의하기  (0) 2011.12.16