欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

13、构造函数之间的调用

程序员文章站 2022-03-17 13:08:08
...

1、构造函数之间的调用只能通过this语句调用,
2、构造函数调用时,this语句只能出现在第一行,两个构造函数按顺序执行

class Person {
   String name;
   int age;
   public Person(String name){
       this.name=name;
       System.out.println("构造函数1");
   }
     public Person(String name,int age){
       this(name);
       this.age=age;
     }
}
public  class Test{
    public static void main(String[] args){
       Person A=new Person("小明",23);
    }
}