是否可以在 C# 中定义通用 lambda?
我在一个对指定类型进行操作的方法中有一些逻辑,我想创建一个封装该逻辑的通用 lambda。这就是我想做的事情的精神:
public void DoSomething()
{
// ...
Func<T> GetTypeName = () => T.GetType().Name;
GetTypeName<string>();
GetTypeName<DateTime>();
GetTypeName<int>();
// ...
}
我知道我可以将类型作为参数传递或创建泛型方法。但我很想知道 lambda 是否可以定义自己的通用参数。 (所以我不是在寻找替代方案。) 据我所知,C# 3.0 不支持这一点。
I have some logic in a method that operates on a specified type and I'd like to create a generic lambda that encapsulates the logic. This is the spirit of what I'm trying to do:
public void DoSomething()
{
// ...
Func<T> GetTypeName = () => T.GetType().Name;
GetTypeName<string>();
GetTypeName<DateTime>();
GetTypeName<int>();
// ...
}
I know I can pass the type as a parameter or create a generic method. But I'm interested to know if a lambda can define its own generic parameters. (So I'm not looking for alternatives.) From what I can tell, C# 3.0 doesn't support this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
虽然 Jared Parson 的答案在历史上是正确的(2010 年!),但如果您搜索“generic lambda C#”,这个问题是 Google 中第一个出现的问题。虽然 lambda 没有语法来接受其他泛型参数,但您现在可以使用本地(泛型)函数来实现相同的结果。当它们捕获上下文时,它们几乎就是您正在寻找的东西。
While Jared Parson's answer is historically correct (2010!), this question is the first hit in Google if you search for "generic lambda C#". While there is no syntax for lambdas to accept additional generic arguments, you can now use local (generic) functions to achieve the same result. As they capture context, they're pretty much what you're looking for.
无法创建具有新泛型参数的 lambda 表达式。您可以在包含的方法或类型上重复使用泛型参数,但不能创建新的参数。
It is not possible to create a lambda expression which has new generic parameters. You can re-use generic parameters on the containing methods or types but not create new ones.
虽然您(还?)无法拥有通用的 lambda(另请参阅 此答案 以及对 这个问题),您可以获得相同的用法语法。如果您定义:
您可以使用它(尽管
using static
是 C# 6):While you cannot (yet?) have a generic lambda (see also this answer and one comment to this question), you can get the same usage syntax. If you define:
The you can use it (though
using static
is C# 6) as:仅当您的
DoSomething
方法是通用方法或其类是通用方法时,这才可能实现。This is only possible when your
DoSomething
method is generic or its class is generic.