show/hide this revision's text 8 added 7 characters in body

A)

List<? super Shape> shapeSuper = new ArrayList<Shape>();

shapeSuper.add(new Square());       //extends from SHAP  
shapeSuper.add(new DoubleSquare()); //extends from SQ  
shapeSuper.add(new TripleSquare()); //extends from DS  
shapeSuper.add(new Rectangle());    //extends from SHAP  
shapeSuper.add(new Circle());       //extends from SHAP  

for (Object object : shapeSuper) { ... }

Why must the iteration turned to Object..when i be of Objects when I can add only Shape and it's its derivatives?

B)

List<? super Shape> shapeSuper = new ArrayList<Object>();  

shapeSuper.add(new Object()); //compilation error

Why does the above line produces produce a compilation error. ?

show/hide this revision's text 7 deleted 24 characters in body

A)

List<? super Shape> shapeSuper = new ArrayList<*Shape*>();

    <Shape>();

shapeSuper.add(new Square());       //extends from SHAP  
shapeSuper.add(new DoubleSquare()); //extends from SQ  
shapeSuper.add(new TripleSquare()); //extends from DS  
shapeSuper.add(new Rectangle());    //extends from SHAP  
shapeSuper.add(new Circle());       //extends from SHAP  

for (Object object : shapeSuper) { ... }

Why the iteration turned to Object..when i can add only Shape and it's derivatives

B)

List<? super Shape> shapeSuper = new ArrayList<*Object*>();  

<Object>();  

shapeSuper.add(new Object()); //compilation error

Why does the previous above line produce a produces compilation error?.

show/hide this revision's text 6 grammar

A)

List<? super Shape> shapeSuper = new ArrayList<*Shape*>();

    shapeSuper.add(new Square());       //extends from SHAP  
    shapeSuper.add(new DoubleSquare()); //extends from SQ  
    shapeSuper.add(new TripleSquare()); //extends from DS  
    shapeSuper.add(new Rectangle());    //extends from SHAP  
    shapeSuper.add(new Circle());       //extends from SHAP  

    for (Object object : shapeSuper) {

    ... }

Why the iteration turned to Object..when i can add only Shape and it's derivatives

B)

List<? super Shape> shapeSuper = new ArrayList<Object>();  

<*Object*>();  

shapeSuper.add(new Object()); //compilation error

Why does the above previous line produces produce a compilation error. ?

show/hide this revision's text 5 improved formatting
show/hide this revision's text 4 formatting
show/hide this revision's text 3 improved formatting
show/hide this revision's text 2 edited tags
show/hide this revision's text 1