关于this调用构造方法为什么不行呢?
public class aa
{
aa()
{
System.out.println("我是AA的构造方法");
}
void qq()
{ this();
}
public static void main(String args[])
{
aa t=new aa();
t.qq();
}
}
提示:"call to this must be first statement in constructor"
但是此时this();已经放在statement的第一句了,请问该如何解决这个问题?