本文介绍了将代理定义为函数指针的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用一个调用非托管函数指针的委托。这将导致垃圾收集器在使用之前收集它,如MSDN上的CallbackOnCollectedDelegate MDA页面所述:。
分辨率表明我必须将适当的委托作为非托管函数指针进行编组。我的初始反应是使用:
[MarshalAs(UnmanagedType.FunctionPtr)]
public delegate void EntityCallback([MarshalAs (UnmanagedType.SysInt)] IntPtr实体);
但是,C#编译器不会让我组织一个委托,即使这是建议的解决方案由MSDN。此外,MSDN页面仅显示一个被抛出的问题的示例,但不是其中一个解决方案。
如何将我的委托作为非托管函数指针进行编组或保留它是从GCed?
编辑:建议,我创建了回调的引用。因此,我的代码从/更改为:
// From:
foo.SetCallback(new EntityCallback(bar) );
// To:
call = new EntityCallback(bar); //在类
中引用参数foo.SetCallback(call);
现在这可以正常工作,但只能在调试模式下运行。当我切换到Release时,它会在同一时刻崩溃。为什么?
编辑2 :更完整的代码段:
public class Test
{
private EntityCallback Call;
private void Bar(System.IntPtr target)
{
...
}
public Entity Foo {get;组; }
public Test()
{
this.Foo = new Body.Sphere(){Visible = false}; //不相关
this.Foo.CollisionType = 3; //不相关
this.Call = new EntityCallback(this.Bar);
this.Foo.SetCallback(this.Call,EntityCallbackType.Collision);
}
}
解决方案
你没有正确读取它。您必须这样做:
In other words, just store a reference to the delegate instance in your class and make sure the class object survives long enough. Use a static if you really have to.
这篇关于将代理定义为函数指针的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!