首頁 > 後端開發 > C++ > 如何處理C#任務中的異常(Async/Await和ContinueWith)?

如何處理C#任務中的異常(Async/Await和ContinueWith)?

DDD
發布: 2025-01-03 15:48:39
原創
582 人瀏覽過

How Do I Handle Exceptions in C# Tasks (Async/Await and ContinueWith)?

C# 任務中的異常處理

使用 Task 時,異常處理對於確保應用程式的健全性和回應能力至關重要。本文探討了兩種捕捉異常的方法,具體取決於所使用的 C# 版本。

C# 5.0 及更高版本:Async 和 Await

在 C# 5.0 及更高版本中,async 和 await 關鍵字簡化基於任務的程式設計顯著。非同步方法不依賴ContinueWith,而是允許您直接使用try/catch區塊來處理異常:

try
{
    // Start the task.
    var task = Task.Factory.StartNew<StateObject>(() => { /* action */ });

    // Await the task.
    await task;
}
catch (Exception e)
{
    // Perform cleanup here.
}
登入後複製

C# 4.0及以下:帶有TaskContinuationOptions的ContinueWith

對於舊版本的C#, TaskContinuationOptions 枚舉的ContinueWith重載可以是used:

// Get the task.
var task = Task.Factory.StartNew<StateObject>(() => { /* action */ });

// For error handling.
task.ContinueWith(t => { /* error handling */ }, context,
    TaskContinuationOptions.OnlyOnFaulted);
登入後複製

OnlyOnFaulted 確保僅當先行任務拋出異常時才執行延續。可以連結多個延續來處理不同的情況:

// For error handling.
task.ContinueWith(t => { /* error handling */ }, context, 
    TaskContinuationOptions.OnlyOnFaulted);

// If it succeeded.
task.ContinueWith(t => { /* on success */ }, context,
    TaskContinuationOptions.OnlyOnRanToCompletion);
登入後複製

無論您選擇async/await 方法還是使用TaskContinuationOptions 技術的ContinueWith,這些方法都使您能夠有效捕獲C# 任務中的異常,確保您的應用程式處理優雅地出現意外錯誤。

以上是如何處理C#任務中的異常(Async/Await和ContinueWith)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板