首页 > 代码库 > 20161201
20161201
this关键字使用方法
this.属性 或者 this.方法 this指代当前对象
this() 在一个构造方法中调用本类中的另一个构造方法,实现构造方法代码的复用
this()只能写在构造方法内的第一句
public class Person {
private String name;
private int age;
private boolean gender;//性别male female
public Person(){
this("匿名");
}
public Person(String name){
this(name,18,true);//代表调用本类的另一个构造方法,只能写在一个构造里面且只能是第一句!
}
public Person(String name, int age){
this(name,age,true);
}
}
20161201
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。