猿问

处理循环中的所有成员

我有一个非常大的项目,有多个页面,每个页面都有很多IDisposable成员。

我试图找出一种方法来处理IDisposable循环中的所有成员,这样我就不必x1.Dispose(); x2.Dispose; ... xn.Dispose在每个类上都打字。

有没有办法做到这一点?


莫回无
浏览 156回答 3
3回答

HUX布斯

使用反射(未测试):    public static void DisposeAllMembersWithReflection(object target)    {        if (target == null) return;        // get all fields,  you can change it to GetProperties() or GetMembers()        var fields = target.GetType().GetFields(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic);        // get all fields that implement IDisposable        var disposables = fields.Where(x => x.FieldType.GetInterfaces().Contains(typeof(IDisposable)));        foreach (var disposableField in disposables)        {            var value = (IDisposable)disposableField.GetValue(target);            if (value != null)                value.Dispose();        }    }

慕雪6442864

当然,只要确保您创建一个列表来保存它们,并尝试最终阻止以防止泄漏它们。// List for holding your disposable typesvar connectionList = new List<IDisposable>();&nbsp; &nbsp;&nbsp;try{&nbsp;&nbsp; &nbsp; // Instantiate your page states, this may be need to be done at a high level&nbsp; &nbsp; // These additions are over simplified, as there will be nested calls&nbsp; &nbsp; // building this list, in other words these will more than likely take place in methods&nbsp; &nbsp; connectionList.Add(x1);&nbsp; &nbsp; connectionList.Add(x2);&nbsp; &nbsp; connectionList.Add(x3);}finally{&nbsp; &nbsp; foreach(IDisposable disposable in connectionList)&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; try&nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; disposable.Dispose();&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; catch(Exception Ex)&nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Log any error? This must be caught in order to prevent&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // leaking the disposable resources in the rest of the list&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }}然而,这种方法并不总是理想的。嵌套调用的性质将变得复杂,并且要求调用在程序架构中处于最上层,您可能只想考虑在本地处理这些资源。此外,这种方法在这些 Disposable 资源密集且需要立即释放的场景中严重失败。虽然您可以执行此操作,即跟踪您的 Disposable 元素,然后一次性完成所有操作,但对于像这样的托管资源,最好尝试使对象生命周期尽可能短。无论您做什么,请确保不要泄漏 Disposable 资源。如果这些是连接线程,并且它们在一段时间内处于非活动状态,那么简单地查看它们的状态然后在不同的地方重新使用它们而不是让它们徘徊也可能是明智的。

慕勒3428872

创建将处理所有一次性对象的方法:public void DisposeAll(){&nbsp; &nbsp; x1.Dispose();&nbsp; &nbsp; x2.Dispose();&nbsp; &nbsp; x3.Dispose();&nbsp; &nbsp; . . .}并在任何需要的地方调用它。
随时随地看视频慕课网APP
我要回答