this 关键字将引用类的当前实例。静态成员函数没有 this 指针。this 关键字可用于从构造函数、实例方法和实例访问器中访问成员。
限定被相似的名称隐藏的成员
将对象作为参数传递到其他方法
声明索引器
class Employee
{
public string name;
public int age;
public Employee(string name,int age) {
this. name = name;
//这里如果不加this, 这时编译器无法辨别代码中的变量age哪个是成员变量,哪个是方法中的参数变量
this.age = age;
}
public void func1() {
func2(this); //将Employee对象作为参数传递到DoPrint方法
}
private void func2(Employee employee)
{
//方法体
}
int[] array = new int[3];
public int this[int param] //声明索引器
{
get { return array[param]; }
set { array[param] = value;}
}
}
|