多項選擇題可以使用throw語句拋出的對象包括()。

A、Error
B、Event
C、Exception
D、Object
E、Throwable
F、RuntimeException


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題菜單組成的基本要素包括()。

A、菜單條
B、菜單框
C、菜單
D、菜單項

2.多項選擇題如下選項中可以從WindowEvent獲取事件源的方法有()。

A、getFrame()
B、getID()
C、getSource()
D、getWindow()

3.多項選擇題下面敘述正確的有()。

A、java中的集合類(如Vector)可以用來存儲任何類型的對象,且大小可以自動調(diào)整。可以不需要知道存儲對象的類型,就能正常使用
B、在java中,可以用異常(Exception)來拋出一些并非錯誤的消息,但這樣比直接從函數(shù)返回一個結(jié)果要花費更大的系統(tǒng)開銷
C、java接口包含函數(shù)聲明和常量聲明
D、java中,子類不可以訪問父類的私有成員和受保護(hù)的成員

4.多項選擇題可用于定義新線程類的方法有()。

A、implement the Runnable interface
B、add a run()method in the class
C、create an instance of Thread
D、extend the Thread class

5.多項選擇題創(chuàng)建一個向文件“file.txt”追加內(nèi)容的輸出流對象的語句有()。

A、FileOutputStream out=new FileOutputStream(“file.txt”,true);
B、OutputStream out=new FileOutputStream(“file.txt”,“append”);
C、OutputStream out=new FileOutputStream(“file.txt”);
D、FileOutputStream out=new FileOutputStream(new file(“file.txt”));
E、OutputStream out=new FileOutputStream(new File(“file.txt”),true.;