我对 C# 比较陌生,所以如果这个问题的答案很明显,我很抱歉。
我正在编写的程序的一部分存储结构数组,结构的元素之一是柯里化函数。
以下是导致问题的代码部分(尽我所能)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CurryingProblem
{
class Program
{
public struct Value
{
public Func<decimal> Output;
}
public static decimal AddOne(decimal value)
{
return value + 1;
}
static void Main(string[] args)
{
Dictionary<string, Decimal> ThingsToAdd = new Dictionary<string, decimal>();
Dictionary<string, Value> ThingsToPrint = new Dictionary<string, Value>();
ThingsToAdd.Add("One", 1.0m);
ThingsToAdd.Add("Two", 2.0m);
foreach (KeyValuePair<string, Decimal> thing in ThingsToAdd)
{
Value value = new Value();
value.Output = () => AddOne(thing.Value);
ThingsToPrint.Add(thing.Key, value);
}
Console.WriteLine(ThingsToPrint["One"].Output());
Console.WriteLine(ThingsToPrint["Two"].Output());
Console.ReadKey();
}
}
}
该程序的预期输出是
2.0
3.0
但实际输出是
3.0
3.0
关于我哪里出错的任何方向都会很棒。