0

有什么方法可以访问吗?有像 john.txt micheal.txt james.txt .... 这样的文本文件。

我可以使用以下代码访问它们:

ifstream file1( "james.txt", ios::in );

我可以打开一个文件吗?

string name = "james"; ifstream file1( name, ios::in )
4

2 回答 2

4

也许您可以尝试以下方法:

ifstream file1((name + ".txt").c_str(), ios::in);
于 2013-07-20T06:31:30.837 回答
-2

尝试这个:

char name[]="james.txt";
ifstream file1( name, ios::in );
于 2013-07-20T06:31:23.470 回答