• 2022-06-06
    若磁盘上己存在某个文本文件,其全路径文件名为d:myfile est.txt,下列语句中不能打开该文件的是______。
    A: ifstream file("d:myfile
    est.txt");
    B: ifstream file("d:\myfile\test.txt");
    C: ifstream file;file.open("d:\myfile\test.txt");
    D: ifstream *pFile=new ifstream("d:\myfile\test.txt");
  • 举一反三