public class GouZao {
public static void main(String[] args) {
Test11 t = new Test11();
Test11 t2 = new Test11("dsdsd",1233); //创建有参构造函数会后就不调用无参的构造函数 了
// t.setData("zhu");
}
}
class Test11{
Test11(){
this("zhuhuh",1213); //this() 作用:有参构造函数和无参构造函数之间来回调用,只能有一个,不能同时有
System.out.println("这是无参构造函数----");
}
Test11(String name, int age){
//this(); //调用无参函数
// this.data = name;
// this.age = age;
System.out.println("有参函数------"+name+" "+age);
}
}
运行结果截图: