为什么用fstream没有输出
初学c++,学习文件流这块遇到输出问题,代码如下
#include<fstream>
#include<iostream>
using namespace std;
int main()
{
ifstream in("inputfile.txt");
ofstream out("outputfile.txt");
for(string str;getline(in,str);)
out<<str<<endl;
return 0;
}
其中inputfile.txt,outputfile.txt都和此代码的cpp文件放在同一源代码文件夹中了
intputfile中手动输入的是:
a b
d e
a j
f k
d l
h j
f l
为什么outputfile中没有任何输出?
我用的是eclipse c++