閱讀下面寫文件的程序 import java. io. *; public class WriteFile{ public static void main(S
閱讀下面寫文件的程序 import java. io. *; public class WriteFile{ public static void main(String[]A) { int[]myArray={10,20,30,40}; try{ FileOutputStream f=new FlieOutStream("ints. dat"); DataOutputStream______=new DataOutputStream(f); for(int i=0; i<myArray. length; i ++) dos. writeInt(myArray[i]); dos. close(); System. out. prinfln("Have written binary file ints. dat"); } catch(IOException ioe){ System. out. println("IO Exception"); } } 在程序下畫線處填入的正確選項(xiàng)是
A.myArray
B.dos
C.ioe
D.ints
正確答案:B解析:要求填寫的是一個(gè)DataOuputStream類的對(duì)象名稱,根據(jù)程序下文中出現(xiàn)的dos. writeInt可知,對(duì)象名稱為dos。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。