c#中的多线程异常处理

本文介绍了C#中处理多线程异常的方法,包括:1. 对于Thread操作,异常应在每个线程内部捕获;2. 异步函数如WebClient的UploadStringAsync,异常会在完成事件中传递;3. Task的异常处理,可以通过Wait或设置OnlyOnFaulted的继续任务来捕获;4. C# 5.0中async、await的关键字处理异常,参考链接提供详细信息。
摘要由CSDN通过智能技术生成

1.对于Thread操作的异常处理

public static void Main()
{
  try
  {
    new Thread (Go).Start();
  }
  catch (Exception ex)
  {
    // We'll never get here!
    Console.WriteLine ("Exception!");
  }
}
static void Go() { throw null; }   // Throws a NullReferenceException


在go函数里抛出的异常时不会被主线程的try,catch捕捉的,各个线程应该有自己的try,catch去处理线程异常。

正确写法:

public static void Main()
{
   new Thread (Go).Start();
}
static void Go()
{
  try
  {
    ...
    throw null;    // The NullReferenceException will get caught below
    ...
  }
  catch (Exception ex)
  {
    Typically log the exception, and/or signal another thread
    that we've come unstuck
    ...
  }

}


2. 异步函数的异常处理

比如 WebClient中的 UploadStrin

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值