溫馨提示×

溫馨提示×

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

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

使用java怎么向數(shù)組插入元素

發(fā)布時間:2021-04-22 16:17:26 來源:億速云 閱讀:430 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關使用java怎么向數(shù)組插入元素,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

Java是什么

Java是一門面向?qū)ο缶幊陶Z言,可以編寫桌面應用程序、Web應用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應用程序。

1、使用 insertElement () 方法向數(shù)組插入元素

import java.util.Arrays;
public class Test{
     
     
     
    public static void main(String args[]) throws Exception {
     
     
     
        int array[] = {
     
     
      2, 5, -2, 6, -3, 8, 0, -7, -9, 4 };
        Arrays.sort(array);
        int index = Arrays.binarySearch(array, 1);
        System.out.println("元素 1 所在位置(負數(shù)為不存在):"
                + index);
        int newIndex = -index - 1;
        array = insertElement(array, 1, newIndex);
        System.out.println("添加元素1后:"+Arrays.toString(array));
    }
 
    private static int[] insertElement(int original[],
                                       int element, int index) {
     
     
     
        int length = original.length;
        int destination[] = new int[length + 1];
        System.arraycopy(original, 0, destination, 0, index);
        destination[index] = element;
        System.arraycopy(original, index, destination, index
                + 1, length - index);
        return destination;
    }
}
/* 輸出結(jié)果:
元素 1 所在位置(負數(shù)為不存在):-6
添加元素1:[-9, -7, -3, -2, 0, 1, 2, 4, 5, 6, 8]
 */

2、把數(shù)組轉(zhuǎn)化為集合,向集合中添加元素,再將集合轉(zhuǎn)化為數(shù)組

import java.util.*;
public class Test{
     
     
     
    public static void main(String[] args) {
     
     
     
        String[] arr = {
     
     
     "ID", "姓名"};
        // 將數(shù)組轉(zhuǎn)化為集合 1
        List<String> list1 = Arrays.asList(arr);
        List<String> list2 = new ArrayList<>();
        // 定義集合 2 、并向其中添加元素: 性別
        list2.add("性別");
        List<String> List = new ArrayList<String>();
        // 定義新集合、將集合1、2中的元素添加到新集合
        List.addAll(list1);
        List.addAll(list2);
        // 將新集合轉(zhuǎn)化回新數(shù)組
        String[] newArr = List.toArray(new String[List.size()]);
        System.out.println(Arrays.toString(newArr));
    }
}
/* 輸出結(jié)果: [ID, 姓名, 性別]  */

3、創(chuàng)建一個新數(shù)組,新數(shù)組的大小為舊數(shù)組大小+1,把舊數(shù)組里的元素copy一份進新數(shù)組,并把要添加的元素添加進新數(shù)組即可。

關于使用java怎么向數(shù)組插入元素就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

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

AI