gpt4 book ai didi

c# - 这个对象是不是遇到异常会自动处理?

转载 作者:行者123 更新时间:2023-11-30 19:18:43 25 4
gpt4 key购买 nike

using(YourType yourObject = new YourType())
{
//Treatment on you object
//Exception occurs here
}

当我们这样写时,垃圾收集器会自动处理对象,但是如果内部发生异常,垃圾收集器仍然会处理对象或者我必须为它写一些东西,我知道这是一个蹩脚的问题,但我真的困惑,thnx

请解释不同 .net 框架中的处理方式,以使事情变得清晰。

最佳答案

是的,using block 仍然会在出现异常时调用 Dispose。参见 MSDN documentation .

The using statement ensures that Dispose is called even if an exception occurs while you are calling methods on the object.

还有另一篇有用的文章 Avoiding Problems with the Using Statement .

关于c# - 这个对象是不是遇到异常会自动处理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11760571/

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