使用文件系统时,通常要显式地进行open、close操作。1)这样做的目的是什么?2)能否取消显式地open、close操作?应如何做?3)取消显式open、close操作有什么不利?
使用文件系统时,通常要显式地进行open、close操作。1)这样做的目的是什么?2)能否取消显式地open、close操作?应如何做?3)取消显式open、close操作有什么不利?
相关考题:
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
6、JDBC中要显式地关闭连接的命令是()。A.Connection.close();B.RecordSet.close();C.Connection.stop() ;D.Connection.release();