我读了一些c#代码,无法理解函数参数中的“this”关键字?有人可以告诉我它用于什么?谢谢。
public static class ControlExtensions
{
public static void InvokeIfNeeded(this Control ctl,
Action doit)
{
if (ctl.InvokeRequired)
ctl.Invoke(doit);
else
doit();
}
public static void InvokeIfNeeded<T>(this Control ctl,
Action<T> doit, T args)
{
if (ctl.InvokeRequired)
ctl.Invoke(doit, args);
else
doit(args);
}
}
答案 0 :(得分:18)
它用于指定extension method运行的类型。也就是说,public static void InvokeIfNeeded(this Control ctl, Action doit)
“将InvokeIfNeeded
方法添加到Control
类(以及所有派生类)。但是,只有在将声明它们的类的名称空间显式导入到作用域中时,才能使用此方法。
答案 1 :(得分:3)
它表示扩展方法。在您给出的示例中,任何Control对象都可以使用InvokeIfNeeded(Action doit)方法。这是Control已经拥有的所有方法的补充。
答案 2 :(得分:2)
它用于为给定类型定义extension method。
答案 3 :(得分:1)
方法的静态声明和传入的this修饰符表示一个Extension方法,其中所有Control对象都会添加这些方法,就像它们最初以这种方式构建一样。
即: 现在你可以做到
Control myControl = new Control();
myControl.InvokeIfNeeded(myaction);
或
myControl.InvokeIfNeeded(myaction, args);
答案 4 :(得分:1)
它用于标记要添加扩展方法的对象类型。
答案 5 :(得分:0)
将“this”关键字添加到这样的参数将导致该方法被解释为Extension方法而不是常规静态方法。
答案 6 :(得分:0)
方法声明中的this修饰符表示该方法是扩展方法。