您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關java數組的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
java數組
1) 聲明形式:
type[] arrayName; 推薦方式
type arrayName[];
2) 初始化: 方式一: type[] arrayName; arrayName = new type[] {element1, element2, element3, ...} 方式二: type[] arrayName = {element1, element2, element3, ...} 方式三:報錯 type[] arrayName; arrayName = {element1, element2, element3, ...} 方式四: type[] arrayName = new type[length]; 說明: 方式四中,系統為數組元素分配初始值,如byte,int long - > 0, float,double -> 0.0, boolean -> false, 引用類型 -> null。 不要在進行數組初始化時,即指定數組長度,有為每個元素分配初始值。 數組長度是數組的屬性,arrayName.length,即可訪問。 foreach循環方法: for ( type var : array | collection ) { ... } 注:這種方法中var只是原集合中的一個副本,對var進行修改,不會改變原集合的內容。 3) 多維數組 type[][] arrName = new type[length][]; // 可以僅指定高維 type[][] arrName = new type[length2][length3]; String[][] str1 = new String[][] {new String[3], new String[] {"hello"}} // 可見低維長度可以不等 4) 操作數組工具類Arrays binarySearch, copyOf, sort, toString等 (補充用例)
感謝各位的閱讀!關于“java數組的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。