| View previous topic :: View next topic |
| Author |
Message |
Gladis
Joined: 24 May 2006 Posts: 108
|
| Std is the standard namespace... C++ has templates. |
| |
|
|
|
|
amoralis
Joined: 22 Jun 2006 Posts: 21
|
| In java it only represents compile time checking |
| |
|
|
Gladis
Joined: 24 May 2006 Posts: 108
|
amoralis, It SHOULD affect code. Compile time checking leads to a few problems.
For instance... can't create genericized lists. |
| |
|
|
AmeliaR
Joined: 31 May 2006 Posts: 142
|
| The difference is that c++ template generate code. java's generics do not. |
| |
|
|
amoralis
Joined: 22 Jun 2006 Posts: 21
|
| That's what I just said :) |
| |
|
|
Gladis
Joined: 24 May 2006 Posts: 108
|
| But C++ is faster with worse code. So. |
| |
|
|
Aaron Zapashniy
Joined: 04 Jun 2006 Posts: 17 Location: Hungary
|
| Now i read something about variance.. and what i briefly read gave me the impression that i'd be able to specify my method as void doIt(List<Parent..>) or void doIt(List<-Parent>) |
| |
|
|
amoralis
Joined: 22 Jun 2006 Posts: 21
|
This issue Aaron Zapashniy raised is obnoxious because you can't overload methods with the only different in parameters being the object parameterizing the generic collection
I.e. doIt(List<parent> list); can't be overriden by doIt(List<Child> list); |
| |
|
|
Gladis
Joined: 24 May 2006 Posts: 108
|
Aaron Zapashniy, List<? extends Parent>
Which includes Parent and all subclasses of parent. |
| |
|
|
Aaron Zapashniy
Joined: 04 Jun 2006 Posts: 17 Location: Hungary
|
OOooh
That's nice! |
| |
|
|
|