單項(xiàng)選擇題能實(shí)現(xiàn)刪除文件功能的語(yǔ)句是()

A.ofstream fs("date.dat",ios::trunc);
B.ifstream fs("date.dat",ios::trunc);
C.ofstream fs("date.dat",ios::out);
D.ifstream fs("date.dat",ios::in);


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題要求打開(kāi)文件 D:\file.dat,并能夠?qū)懭霐?shù)據(jù),正確的語(yǔ)句是()。

A.ifstream infile("D:\\file.dat",ios::in);
B.ifstream infile("D:\\file.dat",ios::out);
C.ofstream outfile("D:\\file.dat",ios::in);
D.fstream infile("D:\\file.dat",ios::inI.os::out);

2.單項(xiàng)選擇題以下不能正確創(chuàng)建輸出文件對(duì)象并使其與磁盤(pán)文件相關(guān)聯(lián)的語(yǔ)句是()。

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");

3.單項(xiàng)選擇題以下關(guān)于文件操作的敘述中,不正確的是()。

A.打開(kāi)文件的目的是使文件對(duì)象與磁盤(pán)文件建立聯(lián)系
B.文件的讀寫(xiě)過(guò)程中,程序?qū)⒅苯优c磁盤(pán)文件進(jìn)行數(shù)據(jù)交換
C.關(guān)閉文件的目的之一是保證輸出的數(shù)據(jù)寫(xiě)入硬盤(pán)文件
D.關(guān)閉文件的目的之一是釋放內(nèi)存中的文件對(duì)象

4.單項(xiàng)選擇題下列打開(kāi)文件的表達(dá)式中,()是錯(cuò)誤的。

A.ofstream ofile;ofile.open("abc.txt",ios::binary);
B.fstream iofile;iofile.open("abc.txt",ios::ate);
C.ifstream ifile("abc.txt");
D.cout.open("abc.txt",ios::binary);

5.單項(xiàng)選擇題在文件操作中,代表以追加方式打開(kāi)文件的模式是()

A.iso::ate
B.iso::app
C.iso::out
D.iso::trunc