代码很简单,但是总是提示fstream头文件有错误,操作系统是centos7 64位。
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
cout<<"hello,world"<<endl;
return 0;
}
编译报如下错误:
[root@mystudy test]# g++ -o test test.cpp
In file included from /usr/include/c++/4.8.2/fstream:41:0,
from test.cpp:1:
/usr/include/c++/4.8.2/cstdio:120:11: error: '::ets' has not been declared
using ::ets;
同样的代码,在gcc v4.8.2下编译测试没有问题。
看这里报错,应该是在cstdio这个文件的120行处的
ets
没有声明。看了下cstdio这个文件,这个地方应该是
using ::gets;
,所以你看看你的cstdio
这个文件是否正常?里面是不是被修改了。