是否可以在 C# 中定义通用 lambda?

发布于 2024-08-23 22:27:39 字数 399 浏览 2 评论 0原文

我在一个对指定类型进行操作的方法中有一些逻辑,我想创建一个封装该逻辑的通用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

凝望流年 2024-08-30 22:27:39

虽然 Jared Parson 的答案在历史上是正确的(2010 年!),但如果您搜索“generic lambda C#”,这个问题是 Google 中第一个出现的问题。虽然 lambda 没有语法来接受其他泛型参数,但您现在可以使用本地(泛型)函数来实现相同的结果。当它们捕获上下文时,它们几乎就是您正在寻找的东西。

public void DoSomething()
{
    // ...

    string GetTypeName<T>() => typeof(T).GetType().Name;

    string nameOfString = GetTypeName<string>();
    string nameOfDT = GetTypeName<DateTime>();
    string nameOfInt = GetTypeName<int>();

    // ...
}

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.

public void DoSomething()
{
    // ...

    string GetTypeName<T>() => typeof(T).GetType().Name;

    string nameOfString = GetTypeName<string>();
    string nameOfDT = GetTypeName<DateTime>();
    string nameOfInt = GetTypeName<int>();

    // ...
}
混浊又暗下来 2024-08-30 22:27:39

无法创建具有新泛型参数的 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.

滥情哥ㄟ 2024-08-30 22:27:39

虽然您(还?)无法拥有通用的 lambda(另请参阅 此答案 以及对 这个问题),您可以获得相同的用法语法。如果您定义:

public static class TypeNameGetter
{
    public static string GetTypeName<T>()
    {
        return typeof( T ).Name;
    }
}

您可以使用它(尽管 using static 是 C# 6):

using static TypeNameGetter;
public class Test
{
    public void Test1()
    {
        var s1 = GetTypeName<int>();
        var s2 = GetTypeName<string>();
    }
}

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:

public static class TypeNameGetter
{
    public static string GetTypeName<T>()
    {
        return typeof( T ).Name;
    }
}

The you can use it (though using static is C# 6) as:

using static TypeNameGetter;
public class Test
{
    public void Test1()
    {
        var s1 = GetTypeName<int>();
        var s2 = GetTypeName<string>();
    }
}
刘备忘录 2024-08-30 22:27:39

仅当您的 DoSomething 方法是通用方法或其类是通用方法时,这才可能实现。

This is only possible when your DoSomething method is generic or its class is generic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文