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 6945117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:23:41+00:00 2026-05-27T13:23:41+00:00

I am am trying to use the LinkedList class to load an array of

  • 0

I am am trying to use the LinkedList class to load an array of anything. I was looking at the documentation of addAll method and it seem to me that I could load an array of stuff with very little effort.

addAll(int index, Collection<? extends E> c) 
      Inserts all of the elements in the specified collection into this list,
      starting at the specified position.

But I am not so sure on how to structure it.

Let’s just say I have an array of Objects and I am trying to load the objects into a link list.
How would I write this?

NOTE: I am trying to load it to a list because I will be deleting and adding at multiple times.

I used below code but I get an error:

    int[] a = new int[5];
    for(int index = 0; index<5; index++){
        a[index] = index;

    }

    List<Integer> list = new LinkedList<Integer>();
    list.addAll(Arrays.asList(a)); //error Here won't take a[]
  • 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-05-27T13:23:42+00:00Added an answer on May 27, 2026 at 1:23 pm

    If you need specifically LinkedList or mutable collection class (you mentioned add/delete operations) then Arrays.asList(T...) won’t help as it returns a fixed-size list backed by the specified array and hence not mutable and Arrays.asList(T...).add(T) call will always fail.

    If you don’t need an array, use collection classes from start only(like ArrayList or LinkedList). In case if it’s not possible this collection tutorial will give you fair idea about usage and other aspects.

    if you wanto to create an ArrayList (or LinkedList) you can use (and it will copy all the elements of an array to List)-

    new ArrayList<Element>(Arrays.asList(array))
    

    EDIT –

    If the array itself is a primitive array (which you shown in example) then above approach will not work either because Arrays.asList(int[]) will actually return single element List<int[]> and that’s why you’re getting error in your example.
    If you find yourself working heavily with collection of primitives then I would suggest to look at Trove or may be Guava which provides awesome utilities pertaining to collections and other day to day needs(it has Ints.asList() method which satisfy your requirement, see doc).

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

Sidebar

Related Questions

Trying to use an excpetion class which could provide location reference for XML parsing,
I am trying to code a class that makes use of Push and Pop
Trying to use this method (gist of which is use self.method_name in the FunnyHelper
LinkedList throws exception when trying to poll data. But I think i correctly use
I'm running into some bugs now that I'm trying to use the doubly linked
I created a double linked list class, and am trying to use it with
Trying to use StackLL method size() is returning a null pointer error. I cannot
I am trying to use a Generic Linked List to hold some WorkFlow steps
I was trying use a set of filter functions to run the appropriate routine,
I'm trying use self-signed certificate (c#): X509Certificate2 cert = new X509Certificate2( Server.MapPath(~/App_Data/myhost.pfx), pass); on

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.