使用文件系统时,通常要显式地进行open、close操作。1)这样做的目的是什么?2)能否取消显式地open、close操作?应如何做?3)取消显式open、close操作有什么不利?

使用文件系统时,通常要显式地进行open、close操作。1)这样做的目的是什么?2)能否取消显式地open、close操作?应如何做?3)取消显式open、close操作有什么不利?


相关考题:

使用文件系统时,通常要显式地进行open()操作,这样做的目的是A.将文件控制块(FCB)读入内存B.将文件控制块(FCB)写入磁盘或缓存C.将文件内容读入内存D.将文件内容写入磁盘或缓存

JDBC中要显式地关闭连接的命令是 ( )A.Connection.close();B.RecordSet.close()C.Connection.stop()D.Connection.release()

这个c++程序中char city[20]; 的作用是什么 ? #includefstream#includeiostreamusingnamespacestd;intmain(){fstreaminout;inout.open("city.txt",ios::out);inout"Dallas""""tonghua""""长春""";inout.close();inout.open("city.txt",ios::app|ios::out);inout"罗马""""巴黎""";inout.close();charcity[20];inout.open("city.txt",ios::in);while(!inout.eof()){inoutcity;coutcity"";}inout.close();system("PAUSE");return0;}

Her mother asked her to keep the windows___________and the doorA.opened ; closedB.open ; closedC.open ; closeD.opened ; close

打开文件,操作完毕后用()函数关闭它。A.fopen()B.open()C.fclose()D.close()

作为一种好的编程习惯,应在不需要Statement对象和Connection对象时,用close()语句显式地关闭它们。

文件的关闭操作需要用到的函数是_______A.fopen()B.open()C.fclose()D.close()

con.Open()和con.Close()通常应该配对出现。

6、JDBC中要显式地关闭连接的命令是()。A.Connection.close();B.RecordSet.close();C.Connection.stop() ;D.Connection.release();