如何将List的每个对象检索到int []数组中。

时间:2018-09-18 05:57:37

标签: java arrays list int

我想添加一个整数数组作为列表的每个元素。 它类似于2D数组,其中List的每个对象都给该行 并且整数数组的每个元素都给出了列中元素的值,因此应该在特定的(x,y)位置上提供该值。

public static void main(String[] args) {

    Scanner scan = new Scanner(System.in);

    int n = scan.nextInt();

    List data = new ArrayList();  //The List To Add each int[]

    while(n>0){

        int d = scan.nextInt();

        int[] row = new int[d];   // The int[] to be added to the List

        for( int i=0; i<d; i++)

            row[i] = scan.nextInt();

        data.add(row);

        n--;

    }

}

问题是:将整数数组添加到列表后, 它成为对象,我想将每个对象转换回整数Array。

0 个答案:

没有答案