tags:

views:

159

answers:

6

What are these called?

List<String> ids = new ArrayList<String>(sectionIDs);

( the part that is <> )

I know it's a newer java feature, I just cant think of the name.

+2  A: 

It is called Generics

ccheneson
+2  A: 

Java Generics

Mark E
+10  A: 

Those are type parameters for generic classes.

Michael Borgwardt
A: 

Generic classes, it exists already in C++ (if you didn't know).

The Elite Gentleman
or rather, something that quacks like a generic :)
Jimmy
A: 

They are java generics

christian
A: 

Huh, I was going to say, "Those are letters and punctuation symbols. Can you make your question a little more specific?" But apparently a bunch of you figured out what it was he was looking for.

Jay