Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is People in the following Java snippet a type name (like T or K) or a concrete class (or interface) name?

public class Student implements Comparable<People> { ... }

And where can I find explanation or specification on such issue?

share|improve this question

1 Answer

up vote 11 down vote accepted

In this context, People is the name of a concrete class, not a type variable. If you wanted it to be a type variable, you'd have to say that Student itself is a generic:

public class Student<People> implements Comparable<People> { ... }

By the way, notationally, wildcards like T and K that are stand-ins for classes are usually called type variables rather than types.

share|improve this answer
Thank you, templatetypedef. – Kejia Jan 12 '11 at 18:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.