gpt4 book ai didi

C# 事件 : how variables are accessed

转载 作者:太空狗 更新时间:2023-10-29 22:27:45 26 4
gpt4 key购买 nike

假设

public class Program
{
public static void Main(string[] args)
{
Program p = new Program();
A a = new A();
p.Do(a);
System.Threading.Thread.Sleep(1000);
a.Fire();
}

public void Do(A a)
{
int i = 5;
a.ChangeViewEvent += () =>
{
Console.WriteLine(i);
};
}
}

public class A
{
public delegate void ChangeView();
public event ChangeView ChangeViewEvent;

public void Fire()
{
if(ChangeViewEvent != null)
ChangeViewEvent();
}
}

为什么当 ChangeViewEvent 被触发时,事件处理程序仍然能够访问变量 i?我的意思是它不应该超出范围之类的吗?

最佳答案

How come when ChangeViewEvent is fired, event handler is still able to access variable i? I mean shouldn't it be out of scope or something?

不,它被 lambda 表达式捕获了。它被“提升”到编译器生成的类中,这样即使它“超出范围”,lambda 表达式仍然可以访问它。 (请记住,“超出范围”仅表示“无法通过其简单名称访问”。这并不意味着与该变量关联的存储空间已消失且其他任何人都无法访问。)

顺便说一下,这就是为什么“值类型存在于堆栈中”这一经常重复的谎言是错误的许多原因之一。在这种情况下,您有一个值类型,它实际上被提升到编译器生成的类中并最终驻留在堆上。

有关此主题的更多信息,请参阅 MSDN .

关于C# 事件 : how variables are accessed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10032765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com