欢迎光临散文网 会员登陆 & 注册

马老师源码五班

2022-10-22 22:22 作者:抽抽一生恋  | 我要投稿

public class Cat {    int age;    String name;    // 创建一只默认的🐱,1岁,喵喵    Cat() {        this("喵喵"); // this == Cat(String name) {}    }        // 创建一只默认的🐱,1岁,名为 name    Cat(String name) {        this(1, name); // this == Cat(int age, String name) {}    }    // 创建一只名为 name 年龄为 age 的🐱    Cat(int age, String name) {        this.age = age;        this.name = name;    }}

马老师源码五班的评论 (共 条)

分享到微博请遵守国家法律