打开一个二进制输出文件“test.dat”,下列语句中错误的是( )。? ofstream fout;; fout.open( “test.dat”, ios::binary );|ofstream fout;; fout.open( “test.dat” );|ofstream *p = new ofstream( “test.dat”, ios::binary );|ofstream fout( “test.dat”, ios::binary );
打开一个二进制输出文件“test.dat”,下列语句中错误的是( )。? ofstream fout;; fout.open( “test.dat”, ios::binary );|ofstream fout;; fout.open( “test.dat” );|ofstream *p = new ofstream( “test.dat”, ios::binary );|ofstream fout( “test.dat”, ios::binary );
要求打开文件file.dat,并能够写入数据,正确的语句是:() A: ifstream infile(“file.dat”,ios::in); B: ifstream infile(“file.dat”,ios::out); C: ofstream outfile(“file.dat”,ios::in); D: ofstream outfile(“file.dat”,ios::out);
要求打开文件file.dat,并能够写入数据,正确的语句是:() A: ifstream infile(“file.dat”,ios::in); B: ifstream infile(“file.dat”,ios::out); C: ofstream outfile(“file.dat”,ios::in); D: ofstream outfile(“file.dat”,ios::out);
只用于读文件的流类是 。 A: ifstream B: ofstream C: iostream D: fstream
只用于读文件的流类是 。 A: ifstream B: ofstream C: iostream D: fstream
用ifstream、ofstream定义的文件流对象打开文件,均用close()关闭文件
用ifstream、ofstream定义的文件流对象打开文件,均用close()关闭文件
要进行文件输出的操作,需要包含头文件( ) A: ifstream B: fstream C: ofstream D: cstdio
要进行文件输出的操作,需要包含头文件( ) A: ifstream B: fstream C: ofstream D: cstdio
对于ofstream类对象file,feof成员函数的返回值为真表示打开文件失败。()
对于ofstream类对象file,feof成员函数的返回值为真表示打开文件失败。()
C++文件操作需要包含的头文件是 A: fstream B: iostream C: iofstream D: ifstream E: ofstream F: filestream
C++文件操作需要包含的头文件是 A: fstream B: iostream C: iofstream D: ifstream E: ofstream F: filestream
语句ofstream f(″SALARY.DAT″,ios::app|ios::binary);的功能是建立流对象f,试图打开文件SALARY.DAT 并与之连接,并且( )
语句ofstream f(″SALARY.DAT″,ios::app|ios::binary);的功能是建立流对象f,试图打开文件SALARY.DAT 并与之连接,并且( )
在C++中既可以用于文件输入又可以用于文件输出的流类是______。 A: fstream B: ifstream C: ofstream D: iostream
在C++中既可以用于文件输入又可以用于文件输出的流类是______。 A: fstream B: ifstream C: ofstream D: iostream
不论ifstream或ofstream对象,打开文件都可以使用构造函数或 函数,这两种方式所使用的函数的参数可以完全一致。
不论ifstream或ofstream对象,打开文件都可以使用构造函数或 函数,这两种方式所使用的函数的参数可以完全一致。