语句ofstream f(″SALARY.DAT″,ios::app|ios::binary);的功能是建立流对象f,试图打开文件SALARY.DAT 并与之连接,并且( )
举一反三
- 语句ofstream f("SALARY.DAT",ios::applios::binary);的功能是建立流对象f,试图打开文件SALARY.DAT并与之连接,并且 A: 若文件存在,将文件写指针定位于文件尾;若文件不存在,建立一个新文件 B: 若文件存在,将其置为空文件;若文件不存在,打开失败 C: 若文件存在,将文件写指针定位于文件首;若文件不存在,建立一个新文件 D: 若文件存在,打开失败;若文件不存在,建立一个新文件
- 语句ofstream f("salary.dat", ios::app | ios::binary); 的功能是建立流对象f,试图打开文件salary.dat并与之连接,并且? A: 若文件存在,将文件写指针定位于文件末尾;若文件不存在,建立一个新文件 B: 若文件存在,将其置为空文件;若文件不存在,打开失败 C: 若文件存在,将文件写指针定位于文件首;若文件不存在,建立一个新文件 D: 若文件存在,打开失败;若文件不存在,建立一个新文件
- 要求打开文件f:\myfile。dat,并能够写入数据,正确的语句是( )。 A: ofstream outfile("f:\\myfile.dat ", ios::in); B: ifstream infile("f:\\myfile.dat", ios::in); C: fstream infile("f:\\myfile.dat ", ios::in | ios::out); D: ifstream infile("f:\\myfile.dat ", ios::out);
- 语句ofstream f("SALARY.DAT",ios_base::app);的功能是建立流对象f,并试图打开文件SALARY.DAT与f关联,而且 A.若文件存在,将其置为空文件;若文件不存在,打开失败 B.若文件存在,将文件指针定位于文件尾:若文件不存在,建立一个新文件 C.若文件存在,将文件指针定位于文件首;若文件不存在,打开失败 D.若文件存在,打开失败;若文件不存在,建立一个新文件
- 打开一个二进制输出文件“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 );