我来出个题
public class Test { static int i = 1; public Test(Test s) { System.out.println(s.i+1); } public Test() { this(new Test()); } private Test ts(){ new Test(); return this; } public static void main(String[] args) throws Exception { System.out.println(new Test().ts().i); }}