I just created a class like this: NameOfTheClass<Raeaeraear>. What does it means? And why can I put whatever random stuff I want?
|
closed as not a real question by casperOne♦ Aug 23 '12 at 12:02
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.
|
That is called Generics. Generics is used to "tell" a instance of an class what kind of type it is going to work with, take f.ex a List
Here the list is parameterized. If you take a look at the List-interface source code, it is declared like this which means the interface List is generic.
In your case the class NameOfTheClass would be implementet somewhat like this, Note: Generics can be applied to both a Class or an Interface.
This class could be used like this:
Note: Any use of the doSome()-method will require a parameter of type Atype, this will be handled by the Java-compiler. So if you try to call the method with some other type, an compile-error will rise. More readings : http://docs.oracle.com/javase/tutorial/java/generics/why.html |
||||
|
|
|
When you use a e.g.
|
|||||||||||
|