我有以下的测试代码:
void Button_Click(object sender, RoutedEventArgs e)
{
var source = new CancellationTokenSource();
var tsk1 = new Task(() => Thread1(source.Token), source.Token);
var tsk2 = new Task(() => Thread2(source.Token), source.Token);
tsk1.Start();
tsk2.Start();
source.Cancel();
try
{
Task.WaitAll(new[] {tsk1, tsk2});
}
catch (Exception ex)
{
// here exception is caught
}
}
void Thread1(CancellationToken token)
{
Thread.Sleep(2000);
// If the following line is enabled, the result is the same.
// token.ThrowIfCancellationRequested();
}
void Thread2(CancellationToken token)
{
Thread.Sleep(3000);
}
在线程的方法,我不抛出任何异常,但我得到TaskCanceledException
中try-catch
这将启动任务外码的块。 为什么出现这种情况,什么是目的token.ThrowIfCancellationRequested();
在这种情况下。 我相信,如果我叫异常应仅被抛出token.ThrowIfCancellationRequested();
在螺纹方法。