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

  • Home
  • SEARCH
  • 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 6792731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:00:27+00:00 2026-05-26T18:00:27+00:00

I am learning Collections in CoreJava book and I found this code: List<String> a

  • 0

I am learning Collections in CoreJava book and I found this code:

      List<String> a = new LinkedList<String>();

Now I wonder why this code isn’t like this:

LinkedList<String> a = new LinkedList<String>();

Why we declare a as List?

  • 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-26T18:00:28+00:00Added an answer on May 26, 2026 at 6:00 pm

    The code:

    List<String> list = new LinkedList<String>();
    

    is better than:

    LinkedList<String> list = new LinkedList<String>();
    

    This is because if you declared list as List and you found that the performance of the program is not good, you could change the code to:

    List<String> list = new ArrayList<String>();
    

    and see if the program runs faster. The beauty of this is that you can make that change without having to change the rest of the code.

    As a conclusion, if possible, declare a reference as an interface (List is an interface):

    List<String> list;
    

    and you can easily switch the implementation (class ArrayList and class LinkedList are implementations of the interface List):

    list = new LinkedList<String>();
    

    or

    list = new ArrayList<String>();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I learned java generics some time ago, but now I'm learning collections and found
Learning WPF nowadays. Found something new today with .Net dependency properties. What they bring
Im learning lisp and im pretty new at this so i was wondering... if
i have this code: import csv import collections def do_work(): (data,counter)=get_file('thefile.csv') b=samples_subset1(data, counter,'/pythonwork/samples_subset3.csv',500) return
This is just an experienting/learning example. I'm an extreme functional noob. F# code to
I am learning RX (Reactive Extensions), and have found someone posted some code nearly
I'm learning Java at the moment so I hope this question isn't too obvious.
When learning new languages such as C++ from PHP, does reading other language snippets
I’m currently learning the Java Collections API and feel I have a good understanding
I'm still learning here and have a question about child collections. I have an

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.