class ConstructorTry {
public static void main(String[] args) {
ConstructorTry02 cons01 = new ConstructorTry02("lord");
System.out.println(cons01.name);
System.out.println(cons01.age);
System.out.println("**********");
ConstructorTry02 cons02 = new ConstructorTry02(18);
System.out.println(cons02.name);
System.out.println(cons02.age);
System.out.println("**********");
ConstructorTry02 cons03 = new ConstructorTry02("lord", 18);
System.out.println(cons03.name);
System.out.println(cons03.age);
System.out.println("**********");
ConstructorTry02 cons04 = new ConstructorTry02();
System.out.println(cons04.name);
System.out.println(cons04.age);
System.out.println("**********");
/*
lord
-1
**********
anoymous
18
**********
lord
18
**********
anoymous
-1
**********
*/
}
}
class ConstructorTry02 {
String name;
int age;
ConstructorTry02(String name, int age){
this.name = name;
this.age = age;
}
ConstructorTry02(int age){
this("anoymous", age);
}
ConstructorTry02(String name){
this(name, -1);
}
ConstructorTry02(){
this("anoymous", -1);
}
}
Java Constructor
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- org.springframework.beans.factory.UnsatisfiedDependencyEx...
- Constructor类理解 这里Constructor,我们知道是构造函数为什么是数组形式的呢?因为可能有多个构...
- 这篇文章总结了Java使用构造函数中最常遇到的五个问题! 1 为什么调用子类的构造方法的时候,默认会调用父类的构造...