构造器中调用构造器this() 调用的使用必须是 第一语句public class app{ int a;public app(int a){ this.a=11;this()} public app(){}}