有什麼方法可以訪問? 有文本文件一樣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)
試試這個:
char name[]="james.txt";
ifstream file1(name, ios::in);
在C++ 03和更早的版本,你需要使用'james.c_str()' ,但原則上,是的。 (在C++ 11中它只會工作。)[我假設你的意思是設置'string name =「james.txt」'。否則,'.txt'將會丟失。] – jogojapan