首页 > 代码库 > Java - this的使用方法
Java - this的使用方法
this在内部获得当前对象的引用时调用:
(1) return返回当前对象;
(2) 构造器调用还有一个构造器, 带參数;
(3) 參数的名称和数据成员的名称同样;
注意:
this构造器在方法中仅仅能调用一次;
非构造器不能调用带參数的this.
//:Flower.java
/**
* 构造器
*
* Created by C.L.Wang on 15/7/12.
*/
public class Flower {
int petalCount = 0;
String s = "initial value";
Flower(int petals) {
petalCount = petals;
System.out.println("int arg only, petalCount = " + petalCount);
}
Flower(String ss) {
s = ss;
System.out.println("String arg only, petalCount = " + s);
}
Flower(String s, int petals) {
this(petals);
this.s = s;
System.out.println("String & int args");
}
Flower() {
this("hi", 47);
System.out.println("default construction (no args)");
}
void printPetalCount() {
System.out.println("petalCount = " + petalCount + " s = " + s);
}
public static void main(String[] args) {
Flower x = new Flower();
x.printPetalCount();
}
}
/**
* Output:
int arg only, petalCount = 47
String & int args
default construction (no args)
petalCount = 47 s = hi
*///:~
Java - this的使用方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。