單項(xiàng)選擇題設(shè)已定義浮點(diǎn)型變量data,以二進(jìn)制代碼方式把data的值寫入輸出文件流對(duì)象outfile中,正確的語句是()

A.outfile.write((double*)&data,sizeof(double));
B.outfile.write((double*)&data,data);
C.outfile.write((char*)&data,sizeof(double));
D.outfile.write((char*)&data,data);


您可能感興趣的試卷

你可能感興趣的試題

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

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

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

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

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

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

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

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

5.單項(xiàng)選擇題下列打開文件的表達(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);