What is the proper way to rethrow an exception in C#?(在 C# 中重新引发异常的正确方法是什么?)
问题描述
这样做更好吗:
try
{
...
}
catch (Exception ex)
{
...
throw;
}
或者这个:
try
{
...
}
catch (Exception ex)
{
...
throw ex;
}
他们做同样的事情吗?一个比另一个好?
Do they do the same thing? Is one better than the other?
推荐答案
您应该始终使用以下语法重新引发异常.否则你会踩到堆栈跟踪:
You should always use the following syntax to rethrow an exception. Else you'll stomp the stack trace:
throw;
如果您打印由 throw ex
产生的跟踪,您会看到它以该语句结束,而不是异常的真正来源.
If you print the trace resulting from throw ex
, you'll see that it ends on that statement and not at the real source of the exception.
基本上,使用throw ex
应该被视为刑事犯罪.
Basically, it should be deemed a criminal offense to use throw ex
.
如果需要重新抛出来自其他地方(AggregateException、TargetInvocationException)或可能来自另一个线程的异常,您也不应该直接重新抛出它.而是有 ExceptionDispatchInfo 保留所有必要的信息.
If there is a need to rethrow an exception that comes from somewhere else (AggregateException, TargetInvocationException) or perhaps another thread, you also shouldn't rethrow it directly. Rather there is the ExceptionDispatchInfo that preserves all the necessary information.
try
{
methodInfo.Invoke(...);
}
catch (System.Reflection.TargetInvocationException e)
{
System.Runtime.ExceptionServices.ExceptionDispatchInfo.Capture(e.InnerException).Throw();
throw; // just to inform the compiler that the flow never leaves the block
}
这篇关于在 C# 中重新引发异常的正确方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C# 中重新引发异常的正确方法是什么?


- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01