当作为普通委托参数提供时,为什么必须强制转换 lambda 表达式

Why must a lambda expression be cast when supplied as a plain Delegate parameter(当作为普通委托参数提供时,为什么必须强制转换 lambda 表达式)
本文介绍了当作为普通委托参数提供时,为什么必须强制转换 lambda 表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

取方法System.Windows.Forms.Control.Invoke(Delegate方法)

Take the method System.Windows.Forms.Control.Invoke(Delegate method)

为什么会出现编译时错误:

Why does this give a compile time error:

string str = "woop";
Invoke(() => this.Text = str);
// Error: Cannot convert lambda expression to type 'System.Delegate'
// because it is not a delegate type

但这工作正常:

string str = "woop";
Invoke((Action)(() => this.Text = str));

什么时候方法需要一个普通的委托?

When the method expects a plain Delegate?

推荐答案

lambda 表达式可以转换为委托类型或表达式树 - 但它必须知道哪个委托类型.仅仅知道签名是不够的.例如,假设我有:

A lambda expression can either be converted to a delegate type or an expression tree - but it has to know which delegate type. Just knowing the signature isn't enough. For instance, suppose I have:

public delegate void Action1();
public delegate void Action2();

...

Delegate x = () => Console.WriteLine("hi");

您希望 x 引用的对象的具体类型是什么?是的,编译器可以生成具有适当签名的新委托类型,但这很少有用,而且您最终检查错误的机会更少.

What would you expect the concrete type of the object referred to by x to be? Yes, the compiler could generate a new delegate type with an appropriate signature, but that's rarely useful and you end up with less opportunity for error checking.

如果你想让 Control.Invoke 使用 Action 更容易调用,最简单的方法是向 Control 添加扩展方法:

If you want to make it easy to call Control.Invoke with an Action the easiest thing to do is add an extension method to Control:

public static void Invoke(this Control control, Action action)
{
    control.Invoke((Delegate) action);
}

这篇关于当作为普通委托参数提供时,为什么必须强制转换 lambda 表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to pass lambda #39;include#39; with multiple levels in Entity Framework Core?(如何在 Entity Framework Core 中传递具有多个级别的 lambda include?)
Join/Where with LINQ and Lambda(使用 LINQ 和 Lambda 加入/在哪里)
Getting all types that implement an interface(获取所有实现接口的类型)
Combining two expressions (Expressionlt;Funclt;T, boolgt;gt;)(组合两个表达式 (ExpressionFuncT, boolgt;))
Is there a reason for C##39;s reuse of the variable in a foreach?(C# 在 foreach 中重用变量是否有原因?)
Lambda/Linq with Contains criteria for multiple keywords(Lambda/LINQ WITH包含多个关键字的条件)