gpt4 book ai didi

c++ - 如何不从你的线程中捕获抛出?

转载 作者:IT王子 更新时间:2023-10-29 01:17:50 24 4
gpt4 key购买 nike

假设我们有这样的伪代码:

super_local_thread()
{
try{
throw err;
}catch(err)
{
throw err2;
}

我们用 boost 启动了那个线程。我们想用另一个线程来检查它的错误。怎么办?

最佳答案

C++11 指定了一个 current_exception 函数(在标准的 18.8 异常处理 部分)以允许您执行此操作。

这是关于 transporting exceptions between threads 的 MSDN 文章就是利用了这个函数。

由于您使用的是 Boost,这里是 current_exception 的 Boost 文档和关于 transporting exceptions between threads 的 Boost 文章.

关于c++ - 如何不从你的线程中捕获抛出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9745487/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com