Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8743593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:42:23+00:00 2026-06-13T11:42:23+00:00

I am trying to write the following code… static ArrayList<RssItem>[][] list = new ArrayList<RssItem>[][];

  • 0

I am trying to write the following code…

static ArrayList<RssItem>[][] list = new ArrayList<RssItem>[][]; 

This doesn’t work. What am I doing wrong, if I am trying to create a list of ArrayList<RssItem>?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T11:42:24+00:00Added an answer on June 13, 2026 at 11:42 am

    You need to give the size on the RHS: –

    static List<RssItem>[][] arr = (List<RssItem>[][])new List<?>[4][];
    

    Size of column is not needed, but you can give it too: –

    static List<RssItem>[][] arr = (List<RssItem>[][])new List<?>[4][5];
    

    NOTE: –

    You cannot give a specific type as a type parameter on the RHS. You would have to use WildCard. Specific type would only be given when you are instantiating your list in the array.

    To add something to your array, you can use this kind of loop: –

    NOT Tested

        List<RssItem>[][] arr = (List<RssItem>[][])new ArrayList<?>[4][4];
    
        for (int i = 0; i < arr.length; i++) {
            for (int j = 0; j < arr[i].length; j++) {
                arr[i][j] = new ArrayList<RssItem>();
    
                arr[i][j].add(new RssItem());
            }
        }
    
        for (List<RssItem>[] val: arr) {
           for (List<RssItem> val2: val) {
               System.out.println(val2);
           }
        }
    

    P.S.: –

    Please don’t use 2-D array of List. That is equivalent to a 3-D array. Even if you get the above loop to work somehow. It will make your code mess in future. And your life hell. There are many other data structures in Java, that you should consider, like a Map, which is useful in such kind of situations.

    Even, having a List upto 3 levels is a very bad idea. So, please change your design.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to write the following code, though it is wrong it will
I am trying to write equivalent linq code for following query. SELECT A.* FROM
I'm trying to write productions ( LL ) for the following code a[i].b[a[p]].id.xyz.a[c].o =
I am trying to write some simple Rcpp code examples. This is remarkably easy
I have the following code which I'm trying to write a LRU Cache. I
I'm trying to write the following piece of code in python. g = networkx.Digraph()
I have the following code in PHP, I am trying to write the same
I'm trying to write some code that populates a List (actually, it's a series
I'm trying to write the following code inside ASP.Net-MVC razor view but the page
I am trying to write code for registration form which have the following fields.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.