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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:03:26+00:00 2026-06-12T10:03:26+00:00

Can someone explain the following code to me. As in why is List and

  • 0

Can someone explain the following code to me. As in why is “List” and “ArrayList” are
not the same? Does this mean that the variable neighborColumns is a List data structure that holds type Column objects but only public methods from class List can be used on variable neighborColumns? thanks in advance.

List<Column> neighborColumns = new ArrayList<Column>();
  • 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-12T10:03:27+00:00Added an answer on June 12, 2026 at 10:03 am

    This code is ok (Design to interface (List): –

    List<Column> neighborColumns = new ArrayList<Column>();
    List<Column> neighborColumns = new LinkedList<Column>();   // OK To change..
    

    In the above code, you are basically designing to an interface rather than implementation..List is an interface and ArrayList is a concrete class implementing it.

    An advantage is that, you can switch between various implementation, without changing the design..

    Below code is a problem (Design to implementation (ArrayList):-

    ArrayList<Column> neighborColumns = new ArrayList<Column>();
    
    //OOPs.. Cry (Incompatible Types)
    ArrayList<Column> neighborColumns = new LinkedList<Column>(); 
    

    Here since you are designing to an implementation.. So you can not change the implementation on the RHS.. The compiler will cry as above..

    So, in general also, you should always design to an interface, thus not exposing the implementation, and also gaining flexibility of changing the implementation anytime..

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

Sidebar

Related Questions

Can someone explain the following code sample what does album[photo_attributes][] mean I found this
Can someone please explain why the following code is not allowed: List<Number> l =
Can someone explain to me why the following code does not work? public class
Can someone kindly explain how the following python code is working? This code is
Can someone explain the following code.. What will that return statement do. public byte[]
Am new to matlab. Can someone explain me the following code. this code is
Can someone explain the following code snippet for me? // Bind base object so
I'm having a problem with TRY...CATCH blocks. Can someone explain why the following code
Hi can someone explain if the in the following code the synchronized code will
Can someone thoroughly explain the last line of the following code: def myMethod(self): #

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.