- ~
關於以下程序的描述哪一個是正確的?( )java
public class Person{ static int arr[] = new int[5]; public static void main(String a[]){ System.out.println(arr[0]); } }
正確答案: C 你的答案: B (錯誤)
編譯將產生錯誤
編譯時正確,但運行時將產生錯誤
正確,輸出0
正確,輸出 nullcode
char[] ch = new char[3];//默認空格 int [] Int = new int[2];//默認0 String[] strings = new String[2];//默認null double data3[]=new double[5];//默認0.0