A.當(dāng)一個方法聲明一個異常時,表示該方法一定會拋出該異常 B.若一個方法可能拋出系統(tǒng)異常,那么這個方法可以不聲明異常 C.在catch子句中匹配異常一定是一種精確匹配 D.一旦出現(xiàn)異常,程序運行就會終止
A.int []a[]=new int[10][10]; B.int a[][]=new int[][]; C.int [][]a=new int[10][10]; D.int a[][]=new int[10][10];
A.byte B.double C.boolean D.string