首页 > 后端开发 > C++ > 正文

如何在多线程 C 应用程序中的线程之间有效传播异常?

Susan Sarandon
发布: 2024-11-01 10:08:33
原创
125 人浏览过

How can I effectively propagate exceptions between threads in a multi-threaded C   application?

在线程之间传播异常

在多线程应用程序中,处理工作线程中的异常可能具有挑战性。避免未处理的异常导致整个应用程序崩溃,并为主线程提供一种优雅地处理它们的方法至关重要。

异常传播技术

中建议的方法该问题涉及捕获工作线程上的异常,记录它们的类型和消息,并使用 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!