2

(Lambda 函数可能是也可能不是我正在寻找的,我不确定)

基本上我想要完成的是:

int areaOfRectangle = (int x, int y) => {return x * y;};

但它给出了错误:“无法将 lambda 表达式转换为类型'int',因为它不是委托类型”

更详细的问题(实际上与问题无关,但我知道有人会问)是:

我有几个从重写的 OnLayout 分支的函数以及每个函数都依赖的多个函数。为了可读性和为以后的扩展设置先例,我希望从 OnLayout 分支的函数看起来都相似。为此,我需要对它们进行划分并尽可能重用命名:

protected override void OnLayout(LayoutEventArgs levent)
    switch (LayoutShape)
    {
        case (square):
            doSquareLayout();
            break;
        case (round):
            doRoundLayout();
            break;
        etc..
        etc..
    }
void doSquareLayout()
{
    Region layerShape = (int Layer) =>
    {
        //do some calculation
        return new Region(Math.Ceiling(Math.Sqrt(ItemCount)));
    }
    int gradientAngle = (int itemIndex) =>
    {
        //do some calculation
        return ret;
    }
    //Common-ish layout code that uses layerShape and gradientAngle goes here
}
void doRoundLayout()
{
    Region layerShape = (int Layer) =>
    {
        //Do some calculation
        GraphicsPath shape = new GraphicsPath();
        shape.AddEllipse(0, 0, Width, Height);
        return new Region(shape);
    }
    int gradientAngle = (int itemIndex) =>
    {
        //do some calculation
        return ret;
    }
    //Common-ish layout code that uses layerShape and gradientAngle goes here
}

我现在找到的所有示例都说您必须声明一个委托,但我知道我已经看到了一个单行 lambda 声明......

4

4 回答 4

6

试试Func<int, int, int> areaOfRectangle = (int x, int y) => { return x * y;};吧。

Func作为代表工作

在此处查看有关 lamda 表达式使用的更多信息

这个答案也是相关的并且有一些很好的信息

如果您这样做是为了可读性并且要重现相同的函数layerShapegradientAngle,您可能希望为这些函数设置显式委托以显示它们实际上是相同的。只是一个想法。

于 2013-02-15T19:43:31.920 回答
2

试试这样;

Func<int, int, int> areaOfRectangle = (int x, int y) => { return x * y; };

Func<T1, T2, TResult>MSDN检查;

封装具有两个参数并返回 TResult 参数指定类型的值的方法。

于 2013-02-15T19:44:19.257 回答
1

变量类型基于您的参数和返回类型:

Func<int,int,int> areaOfRectangle = (int x, int y) => {return x * y;};
于 2013-02-15T19:44:01.950 回答
1

你很接近:

Func<int, int, int> areaOfRectangle = (int x, int y) => {return x * y;};

因此,对于您的具体情况,您的声明将是:

Func<int, Region> layerShape = (int Layer) =>
...
于 2013-02-15T19:44:25.440 回答