小编典典

复制没有指定元素java的数组

java

我正在尝试复制没有指定元素的数组。假设我有以下数组:

int[] array = {1,2,3,4,5,6,7,8,9};
int[] array2 = new int[array.length-1];

我想要的是将数组复制到array2,而元素不包含整数“ 6”,因此它将包含“ {1,2,3,4,5,7,8,9}”

我只想使用循环,这是我到目前为止所拥有的,但是它不起作用

int[] array= { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    int[] array2= new int[array.length - 1];
    int remove = 6;
    for (int i = 0; i < array2.length; i++) {
        if (array[i] != remove) {
            array2[i] = array[i];
        } else {
            array2[i] = array[i + 1];
            i++;
        }
    }
    for (int i = 0; i < array2.length; i++) {
        System.out.println(array2[i]);
    }

谢谢


阅读 229

收藏
2020-11-26

共1个答案

小编典典

int j = 0;
int count = 0; //Set this variable to the number of times the 'remove' item appears in the list
int[] array2 = new int[array.length - count];
int remove = 6;
for(int i=0; i < array.length; i++)
{
   if(array[i] != remove)
       array2[j++] = array[i];
}
2020-11-26