this 关键字引用类的当前实例,还可用作扩展方法的第一个参数的修饰符。
以下是 this 的常用用途:
(1)限定被相似的名称隐藏的成员,例如:
public Employee(string name, string alias)
{
this.name = name;
this.alias = alias;
}
(2)将对象作为参数传递到其他方法,例如:
CalcTax(this);
public int this [int param]
{
get { return array[param]; }
set { array[param] = value; }
}
(4)扩展方法
扩展方法被定义为静态方法,但它们是通过实例方法语法进行调用的。它们的第一个参数指定该方法作用于哪个类型,并且该参数以 this 修饰符为前缀。仅当您使用 using 指令将命名空间显式导入到源代码中之后,扩展方法才位于范围中。
namespace ExtensionMethods
{
public static class MyExtensions
{
public static int WordCount(this String str)
{
return str.Split(new char[] { ' ', '.', '?' }, StringSplitOptions.RemoveEmptyEntries).Length;
}
}
}
base 关键字用于从派生类中访问基类的成员: