A、ofstream myfile;myfile.open("d:ofile.txt");
B、ofstream*myfile=new ofstream;myfile->open("d:ofile.txt");
C、ofstream myfile("d:ofile.txt");
D、ofstream*myfile=new("d:ofile.txt");
查看答案
正确答案
试题解析
解析:本题考查文件对象的创建方法。可以直接定义文件对象,也可以用new来动态生成。很明显,选项D中使用new的方式是错误的。