在线程之间传播异常
在多线程应用程序中,处理工作线程中的异常可能具有挑战性。避免未处理的异常导致整个应用程序崩溃,并为主线程提供一种优雅地处理它们的方法至关重要。
异常传播技术
中建议的方法该问题涉及捕获工作线程上的异常,记录它们的类型和消息,并使用 switch 语句将它们重新抛出到主线程上。虽然有效,但它在支持有限的异常类型方面存在局限性。
更强大的解决方案是利用 C 11 中引入的Exception_ptr 类型。Exception_ptr 允许在线程之间传输异常。
Exception_ptr 示例 (C 11)
以下代码演示了如何使用Exception_ptr 在多个工作线程和主线程之间传播异常:
<code class="cpp">#include <iostream> #include <thread> #include <exception> #include <stdexcept> std::exception_ptr* exceptions[MAX_THREADS]; // Array to store exceptions from worker threads void f(int id) { try { // Simulated work std::this_thread::sleep_for(std::chrono::seconds(1)); throw std::runtime_error("Exception in thread " + std::to_string(id)); } catch (...) { exceptions[id] = std::current_exception(); } } int main() { std::thread threads[MAX_THREADS]; // Start worker threads for (int i = 0; i < MAX_THREADS; i++) { threads[i] = std::thread(f, i); } // Wait for threads to finish for (int i = 0; i < MAX_THREADS; i++) { threads[i].join(); } // Check for and propagate exceptions for (int i = 0; i < MAX_THREADS; i++) { if (exceptions[i]) { try { std::rethrow_exception(*exceptions[i]); } catch (const std::exception& ex) { std::cerr << "Thread " << i << " exited with exception: " << ex.what() << "\n"; } } } return 0; }</code>
中在这个例子中,为每个工作线程分配了一个单独的Exception_ptr,允许抛出多个异常并将其传播到主线程。这种方法为多线程应用程序中的异常处理提供了更加动态和灵活的解决方案。
以上是如何在多线程 C 应用程序中的线程之间有效传播异常?的详细内容。更多信息请关注PHP中文网其他相关文章!