Java中this调用构造器
【摘要】
我们在类的构造器中,可以显式的使用"this(形参列表)"方式,调用本类中指定的其他构造器构造器中不能通过"this(形参列表)"方式调用自己如果一个类中有n个构造器,则最多有 n - 1构造器中使用了"...
- 我们在类的构造器中,可以显式的使用"this(形参列表)"方式,调用本类中指定的其他构造器
- 构造器中不能通过"this(形参列表)"方式调用自己
- 如果一个类中有n个构造器,则最多有 n - 1构造器中使用了"this(形参列表)"
- 规定:"this(形参列表)"必须声明在当前构造器的首行
- 构造器内部,最多只能声明一个"this(形参列表)",用来调用其他的构造器
示例:
public class ThisTest {
private String name;
private int age;
public ThisTest(){
System.out.println("无参构造器");
};
public ThisTest(String name){
this();
System.out.println("有一个参数的构造器");
this.name = name;
}
public ThisTest(String name, int age){
this("name");
System.out.println("有两个参数的构造器");
this.age = age;
}
public static void main(String[] args) {
ThisTest thisTest = new ThisTest("Mr.Yu",21);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
输出结果:
无参构造器
有一个参数的构造器
有两个参数的构造器
Process finished with exit code 0
- 1
- 2
- 3
- 4
- 5
- 6
文章来源: blog.csdn.net,作者:Mr.Yushiwen,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/MrYushiwen/article/details/109691304
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)