Java中的數組常見錯誤

ArrayIndexOutOfBoundsException:數組索引越界異常 緣由:你訪問了不存在的索引,數組默認下標從0開始,最大的下標值爲數組長度-1java public void test1(){ int[] arr = {1,2,3}; //java.lang.ArrayIndexOutOfBoundsException,數組越界 Sys
相關文章
相關標籤/搜索