Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / August 2006

Tip: Looking for answers? Try searching our database.

Confusion using a parameterized collection with a sub class

Thread view: 
dugrocker - 17 Aug 2006 19:32 GMT
Hi,

I've got a super class A and A subclass of A called B. I want to make a
collection that can be created as either a collection of A or a
subclass of A. That is fine, and seems to compile fine.

However, when I actually make a collection that contains a subclass of
A (B in this example), I cannot add elements of B to the collection.

Does anyone know the solution?

Code snippet below:
<code>

package generics;
import java.util.ArrayList;

public class MyContainer
{
  ArrayList<? extends A> bList; //The list should be a list of
something
                                              //that either extends or
is an A. B
                                              //Fullfills this
requirement

  MyContainer()
  {
     bList = new ArrayList<B>();//List of child class B (compiles)
  }

  public static void main(String[] args)
  {
     MyContainer myContainer = new MyContainer();

     /* *********************************************************
      * The problem is here in the next line.
      *
      * Compiler message:
      *
      * The method add(capture-of ? extends A) in the type
      * ArrayList<capture-of ? extends A> is not applicable for the
      * arguments (B)
      *
      * *********************************************************/
     myContainer.bList.add(new B()); //(fails to compile)

  }
}

</code>
Oliver Wong - 17 Aug 2006 21:17 GMT
>   ArrayList<? extends A> bList; //The list should be a list of
> something
>                                               //that either extends or
> is an A. B
>                                               //Fullfills this
> requirement

[...]

>      /* *********************************************************
>       * The problem is here in the next line.
[quoted text clipped - 7 lines]
>       * *********************************************************/
>      myContainer.bList.add(new B()); //(fails to compile)

   First of all, realize that when a class extends another class, there is
an IS-A relationship formed between the two classes. That is, if B extends
A, then for any given instance of B, you can say that that instance IS-A A.
This more intuitive if you use real class names. Let's say Vehicule and Car.
Car extends Vehicule, and so you can say that a car IS-A Vehicule.

   bList is an ArrayList<? extends Vehicule> which in informal terms means
it's a list of something which extends vehicule. Let's give that something a
name: call it S. Now you don't actually know what S is, only that S extends
Vehicule. So S could be Vehicule itself, or it could be Car, or it could be
some other class that extends Vehicule (such as Boat).

   You can never add anything to this list. Why? Because there's no way to
guarantee that whatever it is your adding extends S. In the above example,
you're trying to add Car to the list, but it's not clear that the list can
accept Car, because Car might not extend S. (e.g. Car doesn't extend Boat,
so if S is actually Boat, you couldn't add the Car to a list of boats)

   My guess is that you don't actually want an ArrayList<? extends
Vehicule>, but rather an ArrayList<Vehicule>. This is saying that you have a
list of vehicules. You can put a car in a list of vehicules, because a car
IS-A vehicule.

   - Oliver
dugrocker - 17 Aug 2006 22:02 GMT
So, what are you saying, if you make the following statement,
"ArrayList<? extends A> aList;" you will be able to instantiate it as
an ArrayList<A> or ArrayList<subclass of A> but you will never be able
to add any objects to it?

This syntax, ArrayList<? extends A>, should only be used in a method
signature then, and not in a variable declaration?

>     First of all, realize that when a class extends another class, there is
> an IS-A relationship formed between the two classes. That is, if B extends
> A, then for any given instance of B, you can say that that instance IS-A A.
> This more intuitive if you use real class names. Let's say Vehicule and Car.
> Car extends Vehicule, and so you can say that a car IS-A Vehicule.

Okie dokie, I'll be sure to write that down right away.

> >   ArrayList<? extends A> bList; //The list should be a list of
> > something
[quoted text clipped - 41 lines]
>
>     - Oliver
Oliver Wong - 17 Aug 2006 22:38 GMT
> So, what are you saying, if you make the following statement,
> "ArrayList<? extends A> aList;" you will be able to instantiate it as
> an ArrayList<A> or ArrayList<subclass of A> but you will never be able
> to add any objects to it?

   Right.

> This syntax, ArrayList<? extends A>, should only be used in a method
> signature then, and not in a variable declaration?

   I don't know about that. It's mainly useful when you want to support all
different kinds of list, and you don't plan on putting anything into the
list, but only in extracting things from the list.

   - Oliver


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.