Reputation: 32730
What is
Type<Type> type;
called (opposed to)
Type type;
You know, where you put the angle brackets around the type? I use this a lot, but don't know the name - it's bugging me. It's very hard to search for - Google ignores the <>
characters.
(note: this is Java)
Upvotes: 4
Views: 870
Reputation: 18514
Generics or parameterized types.
(Hey, two people already posted the same thing as each other and both got ~3 upvotes. I'm just looking for a share of the love.)
Upvotes: 3
Reputation: 22116
Generics: http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html
Upvotes: 9