Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我是对的,std::async 使用一个新线程并调用其中的方法。我想知道如果主线程或父线程死了会发生什么。控制异步方法的线程是否也会死亡。
C++ 中没有“父”线程的概念,每个线程都独立于创建它的线程。但是,main线程是特殊的,如果它返回main()或调用exit(),那么即使其他线程仍在运行,整个应用程序也会终止。一旦发生这种情况,如果仍在运行的线程访问主线程堆栈上的任何全局变量或自动对象,或者使用任何标准库对象或调用信号处理程序中不允许的任何函数,则程序将具有未定义的行为。
main
main()
exit()
简而言之,main如果您期望得到合理的结果,请不要让其他线程在完成后运行。