|
|
|
|
|
by brandonbloom
3289 days ago
|
|
How is it mystifying? You said "besides the one difference you cited, they are not different". I explicitly listed that difference as being the thing that I feel justifies the feature's existence! > the introduction of generics has added a tremendous amount of safety It's added marginal _static_ safety. It added no dynamic safety. Static safety is welcome, but frequently not worth the lengths people go to achieve it. Hence my comment about instantiating generic types with Object in the event that the cost outweighs the safety. > to what used to be typecast littered Java code pre 1.5 Occurrence typing would dramatically minimize the syntactic overhead to casting. There have been research variations of Java that accomplished this: instanceof checks insert implicit casts on branches where the instanceof check is true. Similar extensions have been explored for collections to further omit the instanceof checks without requiring explicit type parameterization. For example, if a collection is only written to privately, you can infer casts from what types are inserted in to the collection. This can achieve the same safety without massive complexity increases to sub-typing, static dispatch, reflection, type signatures, etc. |
|
By the way, Go already has this. If you have a variable, say `foo`, with a generic type, say `interface{}`, you can say
See https://golang.org/doc/effective_go.html#type_switch for details.