gpt4 book ai didi

java - 将一个新项目插入数组的末尾

转载 作者:行者123 更新时间:2023-11-29 08:41:18 25 4
gpt4 key购买 nike

<分区>

所以我想将一个新项目推送到数组的末尾(数字 1-9)。一个 friend 告诉我,我写的代码是正确的,但是当我在eclipse上运行时,没有任何反应。我需要做什么?我应该只在主 block 下打印数组吗?谢谢。

public static void main(String[] args) {
long[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
}

public static long[] push(long[] array, long item) {

// Add one item to an array
long cellsToAdd = 1;
long[] array2 = new long[array.length + 1];

// copy each item in array2 -> array3
for (int i = 0; i < array.length; i++) {
array[i] = array2[i];
}

array2[array2.length - 1] = item;

System.out.println("Array: ");
// Print the array to the console
for (long p : array2) {
System.out.println(p);
}

return array2;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com