Java基礎四

Java基礎 數組操作常見問題 數組腳標越界異常(ArrayIndexOutOfBoundsException) int[] arr = new int[2]; System.out.println(arr[3]); 訪問到了數組中的不存在的腳標時發生。 空指針異常(NullPointerException) int[] arr = null; System.out.println(arr[0])
相關文章
相關標籤/搜索