簡體   English   中英

在 java 中打印 arraylist 中的數組元素

[英]printing elements of array in arraylist in java

我有這段代碼,我想打印出數組的所有值 Arraylist。感謝您的幫助。

這是我的代碼:

for (int i = 0; i <count; i++) {
        System.out.println("list #" + i);
        for (int j = 0; j < list[i].size(); j++) {
            list[i].get(j);

            System.out.println("elements of array in arraylist "+list[i].get(j));


        }
    }

要打印存儲在 arraylist 中的數組元素,您必須執行以下操作:

for each element of arraylist
 get array from arraylist
   for each array element in array
       print array element.

您似乎正在迭代 List 類型的數組。

使用有關數據結構的更多詳細信息編輯代碼

看看這是否適合您。 我認為這更簡單:

int numLists = 10;   // Or whatever number you need it to be.
ArrayList [] arrayOfLists = new ArrayList[numLists];
// you realize, of course, that you have to create and add those lists to the array.  
for (ArrayList list : arrayOfLists) {
    System.out.println(list);
}

我想知道為什么你不喜歡列表列表:

List<List<String>> listOfLists = new ArrayList<List<String>>();
// add some lists of Strings
for (List<String> list : listOfLists) {
    System.out.println(list);
}
for (Object[] array : list)
  for (Object o : array)
    System.out.println("item: " + o);

下面的代碼對我來說很好用

public class Solution
{

    public static void main(String[] args) 
    {

        int T,N,i,j,k=0,Element_to_be_added_to_the_array;

        Scanner sn=new Scanner(System.in);
        T=sn.nextInt();
        ArrayList<Integer>[] arr=new ArrayList[T];
        for(i=0;i<T;i++)
        {
            arr[k]=new ArrayList<Integer>();
            N=sn.nextInt();
            for(j=0;j<N;j++)
            {
                Element_to_be_added_to_the_array=sn.nextInt();
                arr[k].add(Element_to_be_added_to_the_array);
            }
            k++;
        }

//Printing elements of all the arrays contained within an arraylist

    for(i=0;i<T;i++)
    {
        System.out.println("array["+i+"]");
        for(j=0;j<arr[i].size();j++)
        {
            System.out.println(arr[i].get(j));
        }   
    }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM