本文介绍了如何对二维 Java 数组进行切片?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

各位,

我正在使用 JTables 并且有一个二维数组.我需要删除数组中每一行的第一个元素.除此之外还有更简单的方法吗?

I am working with JTables and have a 2-D array. I need to remove the first element of every row in the array. Is there a simpler way to do it besides?

int height = data2.length;
int width = data2[0].length;
Object[][] data = new Object[height][width];
for (int j=0; j<height; j++) {
    for (int i=1; i<width; i++) {
        data[j][i-1] = data2[j][i];
    }
}
data2 = data;

感谢您的时间!

推荐答案

是的 - 您可以使用 System.arraycopy 而不是内部循环:>

Yes - you can use System.arraycopy instead of the inner loop:

Object[][] data = new Object[height][width];
for (int i = 0; i < height; i++) {
    System.arraycopy(data2[i], 1, data[i], 0, width-1);
}

这篇关于如何对二维 Java 数组进行切片?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-19 03:49