This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Generics Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Generics" Watch "Generics" New topic
Author

Generics

Suguna Gollapally
Ranch Hand

Joined: Oct 31, 2006
Posts: 37
import java.util.*;
class shape { }
class Rect extends shape { }
class cir extends shape { }
class shade extends Rect{}
class Test {

public static void add(List<? extends shape>l,int pos,Rect r) {

l.add(pos,r);
}

public static void main(String ar[]) {

List<shade>=new ArrayList<shade>();
add(l,o,newshade());
}
}
What is the error in this program?? is this add() method..
Keith Lynn
Ranch Hand

Joined: Feb 07, 2005
Posts: 2341
Originally posted by Suguna Gollapally:
import java.util.*;
class shape { }
class Rect extends shape { }
class cir extends shape { }
class shade extends Rect{}
class Test {

public static void add(List<? extends shape>l,int pos,Rect r) {

l.add(pos,r);
}

public static void main(String ar[]) {

List<shade>=new ArrayList<shade>();
add(l,o,newshade());
}
}
What is the error in this program?? is this add() method..


Because the parameter to the method accepts a List containing shape or anything that extends shape, there is no way to allow anything to be added to the List in the method.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Generics
 
Similar Threads
A Paint Application with Combo Boxes and Buttons
Applet got refreshed
Generics
Need help for importing classes
Generics doubt