若磁盘上已存在某个文本文件,其全路径文件名为 d:\ncre\test.txt ,下列语句中不能打开该文件的是

admin2019-04-18  24

问题 若磁盘上已存在某个文本文件,其全路径文件名为 d:\ncre\test.txt ,下列语句中不能打开该文件的是

选项 A、ifstream file("d:\ncre\test.txt");
B、ifstream file("d:\\ncre\\test.txt");
C、ifstream file; file.open("d:\\ncre\\test.txt");
D、ifstream* pFile = new ifstream("d:\\ncre\\test.txt");

答案A

解析 本题考查文件流的一些操作,根据文件打开的相关知识,A选项中不能正确打开该文件。
转载请注明原文地址:https://kaotiyun.com/show/GdAp777K
0

最新回复(0)