|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
2 | added 7 characters in body | ||
|
How about covariant return types which have been in place since JDK 1.5? They are It is pretty poorly publicised, as it is a rather an unsexy addition, but as I understand itwere , is absolutely necessary for generics to work. Essentially, the compiler now allows a subclass to narrow the return type of an overridden method to be a subclass of the original method's return type. So this is allowed:
You can call the subclass's |
||||
|
1 |
|
||
|
How about covariant return types which have been in place since JDK 1.5? They are pretty poorly publicised, as it is a rather unsexy addition, but as I understand it were absolutely necessary for generics to work. Essentially, the compiler now allows a subclass to narrow the return type of an overridden method to be a subclass of the original method's return type. So this is allowed:
You can call the subclass's |
||||
