我只是在写一些快速代码并注意到这个编译器错误
在 lambda 表达式中使用迭代变量可能会产生意想不到的结果。
相反,在循环中创建一个局部变量并将迭代变量的值分配给它。
我知道这意味着什么,我可以轻松修复它,没什么大不了的。
但我想知道为什么在 lambda 中使用迭代变量是个坏主意?
我以后会引起什么问题?
考虑这段代码:
List<Action> actions = new List<Action>();
for (int i = 0; i < 10; i++)
{
actions.Add(() => Console.WriteLine(i));
}
foreach (Action action in actions)
{
action();
}
你希望这会打印什么?显而易见的答案是 0...9 - 但实际上它打印了 10、10 次。这是因为只有一个变量被所有代表捕获。正是这种出乎意料的行为。
编辑:我刚刚看到你在谈论 VB.NET 而不是 C#。我相信 VB.NET 有更复杂的规则,因为变量在迭代中保持其值的方式。Jared Parsons 的这篇文章提供了一些有关所涉及困难的信息——尽管它是从 2007 年开始的,所以从那时起实际行为可能已经改变。
假设你的意思是 C# 这里。
这是因为编译器实现闭包的方式。使用迭代变量可能会导致访问修改后的闭包出现问题(请注意,我说“不能”不会“将”导致问题,因为有时它不会发生,具体取决于方法中的其他内容,有时您实际上想要访问修改后的闭包)。
更多信息:
http://blogs.msdn.com/abhinaba/archive/2005/10/18/482180.aspx
更多信息:
http://blogs.msdn.com/oldnewthing/archive/2006/08/02/686456.aspx
http://blogs.msdn.com/oldnewthing/archive/2006/08/03/687529.aspx
http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx
局部变量:范围与生命周期(加上闭包)(2010 年存档)
(强调我的)
在这种情况下发生的是我们使用闭包。闭包只是一种位于方法之外的特殊结构,其中包含需要由其他方法引用的局部变量。当查询引用局部变量(或参数)时,该变量被闭包捕获,并且对该变量的所有引用都被重定向到闭包。
当您考虑闭包在 .NET 中的工作方式时,我建议您牢记这些要点,这是设计人员在实现此功能时必须使用的:
Delegate
s)来实现这些功能。Func(Of T)
(即,Delegate
)实例无法存储传递给它们的参数。Func(Of T)
请务必存储该方法所属的类的实例。这是 .NET 框架用来“记住”传递给 lambda 表达式的参数的途径。那么让我们来看看吧!
所以假设你写了一些这样的代码:
' Prints 4,4,4,4
Sub VBDotNetSample()
Dim funcList As New List(Of Func(Of Integer))
For indexParameter As Integer = 0 To 3
'The compiler says:
' Warning BC42324 Using the iteration variable in a lambda expression may have unexpected results.
' Instead, create a local variable within the loop and assign it the value of the iteration variable
funcList.Add(Function()indexParameter)
Next
For Each lambdaFunc As Func(Of Integer) In funcList
Console.Write($"{lambdaFunc()}")
Next
End Sub
您可能希望代码打印 0,1,2,3,但实际上打印的是 4,4,4,4,这是因为indexParameter
已在Sub VBDotNetSample()
's 范围内“捕获”,而不是在For
循环范围内.
就个人而言,我真的很想看看编译器为此生成了什么样的代码,所以我继续使用了 JetBrains DotPeek。我将编译器生成的代码手动翻译回 VB.NET。
评论和变量名是我的。以不影响代码行为的方式对代码进行了略微简化。
Module Decompiledcode
' Prints 4,4,4,4
Sub CompilerGenerated()
Dim funcList As New List(Of Func(Of Integer))
'***********************************************************************************************
' There's only one instance of the closureHelperClass for the entire Sub
' That means that all the iterations of the for loop below are referencing
' the same class instance; that means that it can't remember the value of Local_indexParameter
' at each iteration, and it only remembers the last one (4).
'***********************************************************************************************
Dim closureHelperClass As New ClosureHelperClass_CompilerGenerated
For closureHelperClass.Local_indexParameter = 0 To 3
' NOTE that it refers to the Lambda *instance* method of the ClosureHelperClass_CompilerGenerated class,
' Remember that delegates implicitly carry the instance of the class in their Target
' property, it's not just referring to the Lambda method, it's referring to the Lambda
' method on the closureHelperClass instance of the class!
Dim closureHelperClassMethodFunc As Func(Of Integer) = AddressOf closureHelperClass.Lambda
funcList.Add(closureHelperClassMethodFunc)
Next
'closureHelperClass.Local_indexParameter is 4 now.
'Run each stored lambda expression (on the Delegate's Target, closureHelperClass)
For Each lambdaFunc As Func(Of Integer) in funcList
'The return value will always be 4, because it's just returning closureHelperClass.Local_indexParameter.
Dim retVal_AlwaysFour As Integer = lambdaFunc()
Console.Write($"{retVal_AlwaysFour}")
Next
End Sub
Friend NotInheritable Class ClosureHelperClass_CompilerGenerated
' Yes the compiler really does generate a class with public fields.
Public Local_indexParameter As Integer
'The body of your lambda expression goes here, note that this method
'takes no parameters and uses a field of this class (the stored parameter value) instead.
Friend Function Lambda() As Integer
Return Me.Local_indexParameter
End Function
End Class
End Module
请注意closureHelperClass
,整个主体只有一个 的实例Sub CompilerGenerated
,因此该函数无法打印For
0,1,2,3 的中间循环索引值(没有地方存储这些值)。该代码仅打印 4 次,即最终索引值(For
循环后)四次。
“但是jrh你为什么发布一个迟到的答案?”