c# – Func代理不链式方法

前端之家收集整理的这篇文章主要介绍了c# – Func代理不链式方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
让我们想象简单的委托电话:
void Main()
{
    Func<int,int,string> tfunc = null;
    tfunc += Add; // bind first method
    tfunc += Sub; // bind second method 

    Console.WriteLine(tfunc(2,2));
}

private string Add(int a,int b)
{
    return "Add: " + (a + b).ToString();
}

private string Sub(int a,int b)
{
    return "Sub: " + (a - b).ToString();
}

这个程序的结果是:

Sub: 0

那么为什么没有调用Add方法?我期待调用方法添加,然后方法Sub.

解决方法

添加被正确链接调用,看看结果
void Main()
{
    Func<int,int b)
{
    Console.WriteLine("Inside Add");
    return "Add: " + (a + b).ToString();
}

private string Sub(int a,int b)
{
    Console.WriteLine("Inside Sub");
    return "Sub: " + (a - b).ToString();
}

它是:

Inside Add
Inside Sub
Sub: 0

什么不链接,因为没有办法访问它,是Add方法的结果.在链接的情况下返回值的代表返回调用的最后一个方法的值,即添加到委托中的最后一个方法.

这在@L_404_0@的第15.4部分中有所规定

Invocation of a delegate instance whose invocation list contains multiple entries proceeds by invoking each of the methods in the invocation list,synchronously,in order. … If the delegate invocation includes output parameters or a return value,their final value will come from the invocation of the last delegate in the list.

原文链接:https://www.f2er.com/csharp/94504.html

猜你在找的C#相关文章