#include<iostream>
#include<fstream>
using namespace std;
int main()
{
string a("hehe.txt");
ofstream aa;
aa.open(a.c_str());
aa<<"hehe"<<endl;
aa.close();
return 0;
}
我在 VS 2010 中创建了一个简单的项目,它只包含一个主文件,如上所示。我想知道“hehe.txt”存储在哪里?我在项目中找不到它。
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
string a("hehe.txt");
ofstream aa;
aa.open(a.c_str());
aa<<"hehe"<<endl;
aa.close();
return 0;
}
我在 VS 2010 中创建了一个简单的项目,它只包含一个主文件,如上所示。我想知道“hehe.txt”存储在哪里?我在项目中找不到它。