Hacker News new | ask | show | jobs
by saturn_vk 1910 days ago
What can be classified as generics abuse in Java?
2 comments

Using generics anywhere only a single type is ever used. The ambiguity really just hurts readability and creates a landmine for future engineers that think other types can be used willy-nilly and things will behave as they should. Especially if some optimizations get done underneath that assume or asserts some set of types, but doesn't enforce them at the API level.
Using java is abusive towards generics, they didn't deserve that?