gpt4 book ai didi

c# 和捕获异常

转载 作者:太空狗 更新时间:2023-10-30 00:12:04 25 4
gpt4 key购买 nike

在处理异常时追加一个通用的异常捕获是好的做法吗?一个例子可能会使这个问题更清楚

try{
// do something
}catch(spomespecificException1 ex){
//logging and other stuff
}catch(spomespecificException2 ex){
//logging and other stuff
}catch(Exception ex){
//logging and other stuff
}

我应该将异常捕获追加到堆栈吗

最佳答案

一般来说,您根本不应该捕获这些异常。不要捕获您实际上不知道如何处理的异常。

“处理”的意思是修复。如果无法解决问题,或者无法添加额外信息,则不要捕获异常。

关于c# 和捕获异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7755101/

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