C#泛型委托类型推断

时间:2012-02-17 09:07:06

标签: c# generics delegates

为什么C#编译器不能在指定的示例中将T推断为int?

void Main()
{
    int a = 0;
    Parse("1", x => a = x);
    // Compiler error:
    // Cannot convert expression type 'int' to return type 'T'
}

public void Parse<T>(string x, Func<T, T> setter)
{
    var parsed = ....
    setter(parsed);
}

2 个答案:

答案 0 :(得分:4)

lambda上的方法类型推断要求在推断出返回的类型之前已知 lambda参数的类型。例如,如果你有:

void M<A, B, C>(A a, Func<A, B> f1, Func<B, C> f2) { }

和电话

M(1, a=>a.ToString(), b=>b.Length);

然后我们推断:

A is int, from the first argument
Therefore the second parameter is Func<int, B>. 
Therefore the second argument is (int a)=>a.ToString();
Therefore B is string.
Therefore the third parameter is Func<string, C>
Therefore the third argument is (string b)=>b.Length
Therefore C is int.
And we're done.

看,我们需要A来计算B,而B需要计算出C.在你的情况下,你想要从...中找出T。你不能那样做。

答案 1 :(得分:2)

请参阅有关通用方法的http://msdn.microsoft.com/en-us/library/ms379564%28v=vs.80%29.aspx部分。

  

请注意,编译器无法根据类型推断出类型   单独返回价值。