#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string s;
ifstream fin;
fin.open("textt.txt");
while(!fin.eof())
fin>>s;
cout<<s;
fin.close();
return 0;
}
请问这个函数有什么错误吗?为什么把这些代码写在qt程序中会有错误呀?求指正。
用qt了,就用qt库内的文件读取方式吧
恩,谢谢了,今天刚找到解决方案了