3

我目前是sandpitting代表。
在以下示例中是否dd引用p.m p.n
添加后我可以添加另一行以p.m再次运行p.n吗?还是我需要d dd = p.m;再次实施?

class Program
{
    private delegate int d(int x);

    static void Main(string[] args)
    {
        Program p;
        p = new Program();

        d dd = p.m;//d dd = new d(p.m);
        Console.WriteLine(dd(3).ToString());

        dd += p.n;//dd += new d(p.n);
        Console.WriteLine(dd(3).ToString());

        //<<is there now a quick way to run p.m ?

        Console.WriteLine("press [enter] to exit");
        Console.ReadLine();
    }

    private int m(int y)
    {
        return y * y;
    }
    private int n(int y)
    {
        return y * y - 10;
    }
}
4

2 回答 2

6

是的,在第一次赋值 ( d dd = this.m;) 之后,所有使用 using 进行的赋值+=也将被调用。

您可以使用 删除一个方法-=,请参阅以下示例;

d dd = p.m;//d dd = new d(p.m);
Console.WriteLine(dd(3).ToString()); //calls p.m

dd += p.n;//dd += new d(p.n);
Console.WriteLine(dd(3).ToString()); //calls boths p.m and p.n

dd -= p.n;
Console.WriteLine(dd(3).ToString()); // only calls p.m
于 2013-02-06T09:17:36.113 回答
2
//is there now a quick way to run p.m ?

是的,除了 daryal 的帖子之外,这可以通过以下方式完成(同时仍保持多播委托):

p.GetInvocationList()[0].DynamicInvoke(new object[] { 3 });
于 2015-07-18T01:01:48.917 回答