网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
使用文件系统时,通常要显式地进行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 ; closed B.open ; closed C.open ; close D.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();