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