a tips about class loader..

=?gbk?B?sfnT6g==?= 335923591 at qq.com
Mon Apr 2 07:36:01 PDT 2012


define the two classes like:
======================
public class B {
	
	private A a = new A();
	
	public static void main(String[] args){
		new B();
	}

}

public class A {

	private B b = new B();
	
}
=====================
its will throw init exception ,could it be reconized automaticlly


More information about the jdk8-dev mailing list