java,this
爱喝雀巢的小熊
这个作者很懒,什么都没留下…
展开
-
java this的经典使用
class Leaf{ int i ; Leaf increment() { i++; return this; } public void print() { System.out.print("i"+i); } public static void main(String[] args) { Leaf lf = new Leaf(); ...原创 2014-01-06 21:49:19 · 64 阅读 · 0 评论 -
this VS static
1. this :代表对象,所在函数所属对象的引用 在定义功能时,如果该功能内部使用到了调用该功能的对象,这事就用this来表示这个对象 可以用于构造函数的调用 this (实际参数); this.成员属性/成员方法: this ():调用的是本类中对应参数的构造函数,必须定义在构造函数的第一行。 2. static:是一个修饰符,用于修饰成员变量和成员函数...原创 2014-01-06 21:55:24 · 100 阅读 · 0 评论