C++中关于输入输出流中c_str

#include
#include
#include
using namespace std;
int main()
{
string filename;
cout<<"Enter name for new file: ";
cin>>filename;
ofstream fout(filename.c_str());
fout<<"For your eyes only!\n";
cout<<"enter your secret number: ";
float secret;
cin>>secret;
fout<<"Your secret number is "< fout.close();
ifstream fin(filename.c_str());
cout<<"Here are the contents of "< char ch;
while(fin.get(ch))
cout< cout<<"Done\n";
fin.close();
return 0;

}

这段代码中,不明白c_str的意思,后来再网络上查找,原来是这样解释的:如果一个文件名被申明为“string”,那么就必须使用 “c_str”,然而,当你申明一个文件名为字符数组型,就没有必要使用,比如。 
char filename[20]; 
in.open(finename) 

otherwise 

string filename; 
in.open(filename.c_str)

你可能感兴趣的:(C++学习)