delegate.BeginInvoke 的参数是副本还是引用?

发布于 2024-08-29 13:45:32 字数 570 浏览 4 评论 0原文

哪里有关于 BeginInvoke 参数处理的文档?

如果我有一个接受对象作为参数的委托(它包装了我的处理程序函数),那么该对象是否会被异步调用的处理程序函数复制或引用?

delegate void MyDelegate(SomeObject obj);

// later on:
// invoke the delegate async'ly:
new MyDelegate(StaticClass.HandlerFunc).BeginInvoke(objInstance, null, null);
// alter the object:
objInstance.SomeProperty = newValue;

// function:
public static void HandlerFunc(SomeObject obj) {
   // is it a possible race condition to read SomeProperty:
   if(obj.SomeProperty == oldValue) {
      // will possibly never enter?
   }
   // ... etc.
}

Where is there documentation on the treatment of arguments to BeginInvoke?

If I have a delegate (which wraps my handler function) that accepts an object as a parameter, does that object get copied or referenced by the asynchronously-called handler function?

delegate void MyDelegate(SomeObject obj);

// later on:
// invoke the delegate async'ly:
new MyDelegate(StaticClass.HandlerFunc).BeginInvoke(objInstance, null, null);
// alter the object:
objInstance.SomeProperty = newValue;

// function:
public static void HandlerFunc(SomeObject obj) {
   // is it a possible race condition to read SomeProperty:
   if(obj.SomeProperty == oldValue) {
      // will possibly never enter?
   }
   // ... etc.
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫漫岁月 2024-09-05 13:45:32

该方法获取对象的引用。

对象不会在 .NET 中复制,除非您专门创建一个副本。

The method gets a reference to the object.

Objects aren't copied in .NET, unless you specifically create a copy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文