- What do
TandSmean? public void main(String... abc); what does...mean? Is...called generic as well?
|
|
|
|||
|
|
|
As for the |
|||||||
|
|
|||
|
|
|
complementing:
|
|||
|
|
|
Sun's Java Generics documentation can be a bit hard to understand at times, so I tried to write a simpler tutorial on Java Generics. You can find it here: |
|||
|
|
|
T and S means that the class itself does not know what classes they are, but things that use the class do. Take java.util.List. The list class does not know anything about T and makes no assumptions about T. Things that use the List class:
Know what's in it. |
|||
|
|