Should I always use generics in Java even though it can take any class?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by Wim Coenen, Grzegorz Oledzki, Flexo♦, meriton, EJP Feb 13 '11 at 3:06
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If the generic class is out of your control - don't use raw types. Raw types have hidden "traps" so you better use generics, even if it's If the class is yours, and it does not make sense to use generics, then don't use generics. |
|||