//this关键词 /*调用类中的属性
调用类中的方法或构造方法
调用当前对象,调用自己的方法,可以省略。
*/
//http://blog.sina.com.cn/s/blog_71f6c1980100wtj4.html //this指当前对象自己 public class Google{
String s="hello";
public Google(String s){
System.out.println("1--->s:"+s);//指代全局
System.out.println("2--->this.s:"+this.s);//指向类的属性/方法
//this.s=s;
//System.out.println("3--->this.s:"+this.s);
}
public static void main(String args[]){
new Google("hello world");
}
}
相关文章
- 09-15QT 中 关键字讲解(emit,signal,slot)
- 09-15关键字(6):trigger触发器
- 09-15final与abstract关键字
- 09-15异常处理关键字
- 09-15在方法中通过throw关键字抛出异常对象
- 09-15throw关键字
- 09-15throw关键字
- 09-15C和指针笔记 3.8 static关键字
- 09-15Python的yield关键字
- 09-15yield关键字的用法和用途