有什么方法可以访问吗?有像 john.txt micheal.txt james.txt .... 这样的文本文件。
我可以使用以下代码访问它们:
ifstream file1( "james.txt", ios::in );
我可以打开一个文件吗?
string name = "james"; ifstream file1( name, ios::in )
有什么方法可以访问吗?有像 john.txt micheal.txt james.txt .... 这样的文本文件。
我可以使用以下代码访问它们:
ifstream file1( "james.txt", ios::in );
我可以打开一个文件吗?
string name = "james"; ifstream file1( name, ios::in )