c# 允许在类的所有实例方法中使用this关键字。这个关键字是一个对当前正在动作的方法所在对象的引用,因此this关键字不允许用在静态方法中。
C#中,this关键字似的方法参数的名字不必可以与声明类型的一些字段和属性不同。因为在方法体中,类的成员可以通过this访问,而不带this前缀的名称优先为参数名,例如:
class
Foo
{
string str;
void fct( string str)
{
this .str = str;
}
}
{
string str;
void fct( string str)
{
this .str = str;
}
}
改关键字的另外一个用法是将当前对象的引用传递给其他方法,甚至其他的类。通常这种用法预示着对象的扩展架构。比如,Visitor设计模式就使用了这一特性
class
Foo
{
void fct()
{
fct(this);
}
static void fct2(Foo foo)
{
}
}
{
void fct()
{
fct(this);
}
static void fct2(Foo foo)
{
}
}