Java中this调用构造器

举报
YuShiwen 发表于 2022/03/31 00:06:49 2022/03/31
【摘要】 我们在类的构造器中,可以显式的使用"this(形参列表)"方式,调用本类中指定的其他构造器构造器中不能通过"this(形参列表)"方式调用自己如果一个类中有n个构造器,则最多有 n - 1构造器中使用了"...
  1. 我们在类的构造器中,可以显式的使用"this(形参列表)"方式,调用本类中指定的其他构造器
  2. 构造器中不能通过"this(形参列表)"方式调用自己
  3. 如果一个类中有n个构造器,则最多有 n - 1构造器中使用了"this(形参列表)"
  4. 规定:"this(形参列表)"必须声明在当前构造器的首行
  5. 构造器内部,最多只能声明一个"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

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。