Java中自动生成构造方法详解

网友投稿 229 2023-05-21


Java中自动生成构造方法详解

java中自动生成构造方法详解

每个类在没有声明构造方法的前提下,会自动生成一个不带参数的构造方法,如果类一但声明有构造方法,就不会产生了.证明如下:

例1:

class person

{

person(){System.out.println("父类-person");}

person(int z){}

}

class student extends person

{

// student(int x ,int y){super(8);}

}

class Rt

{

public stathttp://ic void main(String[]args)

{

student student_dx=new student();//创建student类的对象

}

}

//输出结果:父类-person

例2:

class person

{

person(){System.out.println("父类-person");}

person(int z){}

}

class student extends person

{

student(int x ,int y){super(8);}

}

class Rt

{

public static void main(String[]args)

{

student student_dx=new student(3,4);//创建student类的对象

}

}

//没有输出结果

例1说明:student类自动生成student() {super();}(前提是:student类没有声明构造方法的前提下) 'super()'是用来调用父类的构造方法.

例2中的person()方法没有被调用,说明student类没有产生student(){super();}方法.这是因为student类已经声明构造方法,默认的那个不带参数的构造方法就不产生了.

再举例:

class person

{

person(int z){}

}

class student extends person

{

}

class Rt

{

public static void main(String[]args)

{

nfYirdTq student student_dx=new student();//创建student类的对象

}

}

/*报错:

exercise14.java:8: 找不到符号

符号: 构造函数 person()

位置: 类 person

class student extends person

^

1 错误

*/

说明:student类自动产生了一个student(){super();},但是由于person类已经声明了构造方法,默认的那个带参数的构造方法没有产生.,所以报错中提到找不到构造函数person()

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:使用ftpClient下载ftp上所有文件解析
下一篇:springMVC + easyui + $.ajaxFileUpload实现文件上传注意事项
相关文章

 发表评论

暂时没有评论,来抢沙发吧~