gpt4 book ai didi

c++ - 为什么这段代码catch block 不执行?

转载 作者:可可西里 更新时间:2023-11-01 18:31:29 34 4
gpt4 key购买 nike

捕获处理程序未运行。但是为什么?

如果 线程 ttry block 之前启动,则 catch 处理程序运行。

如果 catch block 的类型与抛出的类型不匹配,程序将退出并解释线程因未捕获的异常而终止,这表明异常已被处理,但 catch block 并未运行。

#include <iostream>
#include <thread>

using namespace std;

void do_work() {}

int main() {
std::cerr << "RUNNING" << std::endl;
try {
thread t(do_work);
std::cerr << "THROWING" << std::endl;
throw logic_error("something went wrong");
} catch (logic_error e) {
std::cerr << "GOTCHA" << std::endl;
}

return 0;
}

编译命令:

c++ -std=c++14 -pthread -pedantic -Wall -Wextra -O0 scratch.cpp -o scratch

最佳答案

您忘记加入主题了:

try {
thread t(do_work);
t.join(); // <<< add this
std::cerr << "THROWING" << std::endl;
throw logic_error("something went wrong");
} catch (logic_error e) {
std::cerr << "GOTCHA" << std::endl;
}

A joinable thread that goes out of scope, causes terminate to be called .因此,您需要调用 joindetach在超出范围之前。

关于c++ - 为什么这段代码catch block 不执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30862138/

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