#include <iostream>
#include <thread>
int main()
{
try {
//子线程不能抛异常
std::thread t([&]() {
while (1){
std::this_thread::sleep_for(std::chrono::seconds(1));
}
});
}
catch (...) {
}
while (1) {
std::this_thread::sleep_for(std::chrono::seconds(1));
}
}
结论:try catch 不能 捕获thread 异常。呵呵哒,直接刷新我的世界观