單項選擇題以下不能正確創(chuàng)建輸出文件對象并使其與磁盤文件相關聯(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");


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題以下關于文件操作的敘述中,不正確的是()。

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

2.單項選擇題下列打開文件的表達式中,()是錯誤的。

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

3.單項選擇題在文件操作中,代表以追加方式打開文件的模式是()

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

4.單項選擇題以下語句中,輸出結果與眾不同的一個是()

A.cout<<"1. "<<setfill(’ ’)<< "Hello! "<<endl;
B.cout<<"1."<<’ ’ <<"Hello! \n";
C.cout<<"1. Hello! "<<endl;
D.cout<<"1. "<<setw(7)<< "Hello! ";