溫馨提示×

Java如何在數(shù)組末尾添加數(shù)據(jù)

小億
188
2024-01-25 15:22:39
欄目: 編程語言

在Java中,可以使用以下方法在數(shù)組末尾添加數(shù)據(jù):

  1. 創(chuàng)建一個新的數(shù)組,長度比原數(shù)組大1。
  2. 將原數(shù)組中的所有元素復(fù)制到新數(shù)組中。
  3. 在新數(shù)組的最后一個位置添加新的數(shù)據(jù)。

示例代碼:

// 原數(shù)組
int[] originalArray = {1, 2, 3, 4, 5};

// 創(chuàng)建一個新的數(shù)組,長度比原數(shù)組大1
int[] newArray = new int[originalArray.length + 1];

// 將原數(shù)組中的所有元素復(fù)制到新數(shù)組中
for (int i = 0; i < originalArray.length; i++) {
    newArray[i] = originalArray[i];
}

// 在新數(shù)組的最后一個位置添加新的數(shù)據(jù)
int newData = 6;
newArray[newArray.length - 1] = newData;

// 打印新數(shù)組
for (int i = 0; i < newArray.length; i++) {
    System.out.print(newArray[i] + " ");
}

輸出結(jié)果:

1 2 3 4 5 6

0