我在我的代码中使用 std::call_once ,它编译成功但在运行时崩溃了......就像这个演示:
#include <iostream>
#include <mutex>
using namespace std;
int main()
{
cout << "Hello world" << endl;
static once_flag of;
call_once(of,[]{});
cout << "see you again" << endl;
return 0;
}