为什么我需要将方法强制转换为`Action`或`Func`以在值元组中使用它?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么我需要将方法强制转换为`Action`或`Func`以在值元组中使用它?相关的知识,希望对你有一定的参考价值。
为什么编译器无法处理这些x3
和x4
赋值?
void X()
{
(Func<int, int>, int) x1 = (GetX, 1); // OK
object x2 = x1; // OK
object x3 = (GetX, 1); // Error CS8135 Tuple with 2 elements cannot be converted to type 'object'.
object x4 = (GetX, 1) as (Func<int, int>, int); // Error CS8307 The first operand of an 'as' operator may not be a tuple literal without a natural type.
object x5 = ((Func<int, int>, int))(GetX, 1); // OK
object x6 = ((Func<int, int>)GetX, 1); // OK
}
int GetX(int x)
{
return x;
}
答案
因为元组没有具体类型,除非您将其转换为更具体的类型。您的GetX
方法可以转换为各种委托类型。所以你需要将它转换为特定的一个,编译器不能为你选择它。
原因与此案相似:
Delegate del = x => x * 2; // err
Delegate del2 = (Func<int,int>)(x => x * 2); // OK
以上是关于为什么我需要将方法强制转换为`Action`或`Func`以在值元组中使用它?的主要内容,如果未能解决你的问题,请参考以下文章
为啥我的 iOS 应用程序中的变量或强制转换为空? [复制]