coens TISTORY
class A{ A(){ B b = new B(this); // 자기자신의 번지값 this } } class B{ B(A a){ } } public class C { }