中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中數組的使用方法

發布時間:2020-06-20 15:47:18 來源:億速云 閱讀:170 作者:Leah 欄目:編程語言

這篇文章運用了實例代碼展示java中數組的使用方法,代碼非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

創建一個數組:

String[] a = new String[5];
String[] b = {“a”,”b”,”c”, “d”, “e”};
String[] c = new String[]{“a”,”b”,”c”,”d”,”e”};

1、打印數組

我們經常使用for循環或者一些迭代器來打印出數組的所有元素,但我們也可以換個姿勢。

int array[] = {1,2,3,4,5};
System.out.println(array); //[I@1234be4e
String arrStr = Arrays.toString(array);
System.out.println(array); //[1,2,3,4,5];

2、創建ArrayList

String[] array = { “a”, “b”, “c”, “d”, “e” };
ArrayList<String> arrayList = 
                        new ArrayList<String>(Arrays.asList(array));
System.out.println(arrayList);
// [a, b, c, d, e]

3、檢查是否包含某個值

int array[] = {1,2,3,4,5};
boolean isContain= Arrays.asList(array).contains(5);
System.out.println(isContain);
// true

4、連接兩個數組

int[] array1 = { 1, 2, 3, 4, 5 };
int[] array2 = { 6, 7, 8, 9, 10 };
// Apache Commons Lang library
int[] combinedIntArray = ArrayUtils.addAll(array1, array2);

5、在一行聲明一個數組

method(new String[]{"a", "b", "c", "d", "e"});

6、數組倒置

int[] intArray = { 1, 2, 3, 4, 5 };
// Apache Commons Lang library
ArrayUtils.reverse(intArray);
System.out.println(Arrays.toString(intArray));
//[5, 4, 3, 2, 1]

7、刪除某個元素

int[] intArray = { 1, 2, 3, 4, 5 };
int[] removed = ArrayUtils.removeElement(intArray, 3);//create a new array
System.out.println(Arrays.toString(removed));

8、轉化為set

Set<String> set = new HashSet<String>(Arrays.asList(new String[]{"a", "b", "c", "d", "e"}));
System.out.println(set);
//[d, e, b, c, a]

9、將Array List轉化為Array

String[] stringArray = { "a", "b", "c", "d", "e" };
ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray));
String[] stringArr = new String[arrayList.size()];
arrayList.toArray(stringArr);

10、將數組元素組成一個字符串

// Apache common lang
String j = StringUtils.join(new String[] { "a", "b", "c" }, ", ");
System.out.println(j); //a, b, c

關于java中數組的使用方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高陵县| 抚顺市| 扬州市| 如皋市| 滁州市| 松桃| 和静县| 平果县| 富阳市| 曲麻莱县| 临桂县| 商都县| 尉氏县| 凭祥市| 华池县| 铁力市| 天峨县| 团风县| 习水县| 灵台县| 甘泉县| 岳普湖县| 阿克苏市| 孟连| 特克斯县| 隆子县| 平邑县| 莱州市| 霸州市| 富源县| 沂源县| 沿河| 自治县| 邮箱| 广东省| 陈巴尔虎旗| 凤凰县| 浑源县| 仪陇县| 久治县| 扎鲁特旗|