当前位置: 代码迷 >> Java相关 >> this是什么
  详细解决方案

this是什么

热度:90   发布时间:2006-08-23 13:17:32.0
this是什么
在JAVA中this是什么啊,如何使用啊
搜索更多相关的解决方案: 如何  JAVA  

----------------解决方案--------------------------------------------------------
对象本身。自已。
例:
public class Student
{
private String name;
public Student(String name)
{
this.name = name;
}
}

----------------解决方案--------------------------------------------------------

引用此方法的对象的变量


----------------解决方案--------------------------------------------------------
  相关解决方案