当需要打开A盘上的abc.txt 文件用于输入时,则定义文件流对象的语句为______ 。A.fstream fin(“A: abc.txt”);B.ofstream fin (“A: abc.txt”);C.ifstream fin(“A: abc.txt”,ios:: app);D.ifstream fin(“A: abc.txt”,ios:: nocreate);
当需要打开A盘上的abc.txt 文件用于输入时,则定义文件流对象的语句为______ 。
A.fstream fin(“A: abc.txt”);
B.ofstream fin (“A: abc.txt”);
C.ifstream fin(“A: abc.txt”,ios:: app);
D.ifstream fin(“A: abc.txt”,ios:: nocreate);
相关考题:
当使用ofstream流类定义一个流对象并打开一个磁盘文件时,文件的默认打开方式为( )。A.ios base::inB.ios_base::binaryC.ios base::in|ios base::outD.ios base::out
( 16 )要建立文件流并打开当前目录下的文件 file.dat 用于输入,下列语句中错误的是A ) ifstream fin=ifstream.open ( "file.dat" ) ;B ) ifstream*fir.=new ifstream ( "file.dat" ) ;C ) ifstream fin; fin.open ( "file.dat" ) ;D ) ifstream *fin=new ifstream ( ) ; fin 一 open ( "file.dat" ) ;
( 26 )当使用 ifstream 流类定义一个流对象并打开一个磁盘文件时,文件的默认打开方式为A ) ios_base::inB ) ios_base::in|ios_base::outC ) ios_base::outD ) ios_base::inios_base::out
在打开函数中其中是在由指定的流上打开由路径名指定的文件,其返回值为指向文件流指针,此函数用于将一个指定的文件打开为一个预定义的标准流()A.openB.f openC.freopenD.f dopen
下列语句不能够用于打开C根目录下文件test.txt的语句是A.ifstream fin;fin.open("C:\\test.txt");B.ifstream fin("C:\\test.txt");C.A)和B)D.ifstream fin;fin("C:\\test.txt");
当使用fstream流类定义一个流对象并打开一个磁盘文件时,文件的隐含打开方式为( )。 A.ios::inS 当使用fstream流类定义一个流对象并打开一个磁盘文件时,文件的隐含打开方式为( )。A.ios::inB.ios::0utC.ios::in I ios::0utD.以上都不对
要建立文件流并打开当前目录下的文件file.dat用于输入,下列语句中错误的是A.ifstream fin=ifstream.open(”file.dat”);B.ifstream*fin=new ifstream(”file.dat”);C.ifstream fin;fin.open(”file.dat”);D.ifstream*fin=new ifstream();fin-open(”file.dat”);
若要打开A盘上user了目录下名为abc.txt的文本文件进行读、写操作,下面符合此要求的函数调用是A.fopen("A:\user\abc.txt",","r")B.fopen("A:\\user\\abc.txt","r+")C.fopen("A:\user\abc.txt","rb")D.fopen("A:\\user\\abc.txt","w")
当使用ifstream流类定义一个流对象并打开一个磁盘文件时,文件的默认打开方式为( )。A.ios—base::inB.ios—base::in l ios base::0utC.los base;:0utD.ios_base::inios_base::0ut
在J2EE中,利用下列构造函数准备对文件abc.txt操作,但文件abc.txt在当前目录不存在,不会产生运行时错误的是()。 A、BufferedReader breader=new BufferedReader(new FileReader("abc.txt"));B、PrintWriter out = new PrintWriter(new FileWriter(“abc.txt”),true);C、FileInputStream fin = new FileInputStream(“abc.txt”);D、OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(“abc.txt”));
当需要使用ifstream流类定义一个流对象并联系一个磁盘文件时,应在文件开始使用#include命令,使之包含()头文件。A、strstrea.hB、stdlib.hC、iostream.hD、fstream.h
若要打开:A盘上user子目录下名为abc.txt的文本文件进行读、写操作,下面符合此要求的函数调用是()。A、fopen("A://user//abc.txt","r")B、fopen("A://user//abc.txt","r+")C、fopen("A://user//abc.txt","rb")D、fopen("A://userl//abc.txt","w")
单选题若要打开A盘上user子目录下名为abc.txt的文本文件进行读、写操作,下面符合此要求的函数调用是()。Afopen("A:/user/abC.txt","r")Bfopen("A://user//abC.txt","r+")Cfopen("A:/user/abC.txt","rb")DD.fopen("A://user//abtxt","w")
单选题在打开函数中其中是在由指定的流上打开由路径名指定的文件,其返回值为指向文件流指针,此函数用于将一个指定的文件打开为一个预定义的标准流()。AopenBfopenCfreopenDfdopen
单选题要建立文件流并打开当前目录下的文件file.dat用于输入,下列语句中错误的是( )。Aifstream fin=ifstream.open(“file.dat”);Bifstream* fin=new ifstream(“file.dat”);Cifstream fin; fin.open(“file.dat”);Difstream* fin=new ifstream(); fin-open(“file.dat”);
单选题当需要使用ifstream流类定义一个流对象并联系一个磁盘文件时,应在文件开始使用#include命令,使之包含()头文件。Astrstrea.hBstdlib.hCiostream.hDfstream.h