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ì)象
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);
A.iso::ate B.iso::app C.iso::out D.iso::trunc