A. int[]a; B. int[]a=newint[]{1,2,3,4,5}; C. int[]a=newint[5]{1,2,3,4,5}; D. int[]a=newint[5];
A. const B. NULL C. false D. this E. native
A. long x = 499 B. int i = 4L C. double d = 34.4 D. float f =1.1
A. int B. Integer C. char D. String E. string F. long
A. switch可以作用在String类型上 B. switch可以作用在int类型上 C. switch可以作用在double类型上 D. switch可以作用在枚举类型上