“扔”和“扔前”有什么区别吗?有些帖子问这两者之间有什么区别。(我为什么要提这个.)但是我的问题在另一个错误中是不同的,我称之为“抛出前”。上帝般的处理方法public class Program {
public static void Main(string[] args) {
try {
// something
} catch (Exception ex) {
HandleException(ex);
}
}
private static void HandleException(Exception ex) {
if (ex is ThreadAbortException) {
// ignore then,
return;
}
if (ex is ArgumentOutOfRangeException) {
// Log then,
throw ex;
}
if (ex is InvalidOperationException) {
// Show message then,
throw ex;
}
// and so on.
}}如果try & catch在Main,那我就用throw;重新抛出错误。但是在上面简化的代码中,所有的异常都会通过HandleException是吗?throw ex;具有与调用相同的效果。throw当被召唤入内HandleException?
3 回答
- 3 回答
- 0 关注
- 738 浏览
添加回答
举报
0/150
提交
取消