○在使用this调用本类中的其他构造时,至少一个是不使用this的。不然就会出现如下的错误:recursive constructor invocation 3 使用this表示当前对象 当前对象:当前正在调用方法的对象。 class Person //定义Person类 { public String getInfo() //取得信息 { System.out.println("Person类-->"+this); //直接打印th...