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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:42:32+00:00 2026-06-01T21:42:32+00:00

I try to explain the issue in an example. I got an interface named

  • 0

I try to explain the issue in an example. I got an interface named X and an I got an class Y which implements X. Several instances of Y are collected in a List. Now here is the point i don’t really understand.
When I’m trying to assign this list to a collection I get an compiler error.
Otherwise when I’m assigning this list to a collection it works.

List<Y> yList = new ArrayList<Y>();
// works
Collection<? extends X> coll1 = yList;
// error
Collection<X> coll2 = yList;

Could anybody explain whats the difference between those two variants and why the second one does not work.

  • 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-01T21:42:34+00:00Added an answer on June 1, 2026 at 9:42 pm

    For this you need to understand a bit more the concept of Generics.

    Let’s look at the following code:

    List<Integer> ints = new ArrayList<Integer>();
    ints.add(Integer.valueOf(1));
    List<Number> numbers = ints;// This does not compile! and you will now see why:
    
    numbers.add(new Double(2.3d));// This is valid
    Integer i = ints.get(1); // This would be broken then because I expect an Integer but get a Double
    

    This is why you need to cast your List<X> to Collection<? extends Y> meaning that the collection contains objects that extends Y but you don’t know the exact type. You know you can cast to (Y) but you don’t know what is the actual type in the collection and therefore, operations like add() or addAll() are not allowed.

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

Sidebar

Related Questions

I have a problem and I will try to explain the issue: I have
Ok I have a complex issue. I will try to explain clearly. I am
My question is a little wordy so I'll try to explain with an example.
Let me try to explain what I need. I have a server that is
I'll try to explain my scenario as best i can; At each application tick
I'll try to explain my problem the best I can, here goes: I have
I'll try to explain this better on another question. This is the query that
I'll try to explain this problem the best way i can with code: double
Let me try to explain it. Please tell me if I am wrong. I
I will try to explain the situation as it is a little bit more

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.