gpt4 book ai didi

multithreading - 我在 32bit-ubuntu-12.04 下使用 g++4.7.0 测试 c++11 的新 功能时收到 'pure virtual method called' 消息

转载 作者:行者123 更新时间:2023-12-03 12:52:42 25 4
gpt4 key购买 nike

//test.cpp

#include<iostream>
#include<thread>
using namespace std;
void call()
{
cout<<"hello world"<<endl;
}
int main()
{
thread t(call);
t.join();
return 0;
}
g++-4.7 -std=c++11 test.cpp -o test -pthread

上面编译得很好,但是当我运行 ./test.我只是收到一条错误消息,上面写着“调用纯虚拟方法,在没有事件异常的情况下终止调用”

谁能帮我?谢谢!

最佳答案

这是一个已知的错误。见 http://llvm.org/bugs/show_bug.cgi?id=12730 .
可悲的是,没有人试图修复它。

关于multithreading - 我在 32bit-ubuntu-12.04 下使用 g++4.7.0 测试 c++11 的新 <thread> 功能时收到 'pure virtual method called' 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11878811/

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