A.當(dāng)一個(gè)方法聲明一個(gè)異常時(shí),表示該方法一定會(huì)拋出該異常 B.若一個(gè)方法可能拋出系統(tǒng)異常,那么這個(gè)方法可以不聲明異常 C.在catch子句中匹配異常一定是一種精確匹配 D.一旦出現(xiàn)異常,程序運(yùn)行就會(huì)終止
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