20161201
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章