this关键字

阅读更多
package test;
class Leaf{
	int i = 0;
	//this是指向自身的引用,所以this.i是成员变量,i是形参。
	Leaf(int i){this.i = i;}
	Leaf increament(){
		i++;
		return this;
	}
	void print(){System.out.println("i="+i);}
}
public class Test {
	public static void main(String args[]){
		Leaf leaf = new Leaf(100);
		leaf.increament().increament().print();
	}
}


this关键字_第1张图片

this关键字_第2张图片
  • this关键字_第3张图片
  • 大小: 141 KB
  • this关键字_第4张图片
  • 大小: 28.2 KB
  • 查看图片附件

你可能感兴趣的:(this)