Lecture 11
Lecture 11
Lecture 11
Generic
Retrieve:
Retrieve:
Retrieve:
E Element
K Key
V Value
T Type
N Number
class Gen<T>{
static T obj; //The type T cannot be static
static T getObj(){ //Methods cannot be static
return obj;
}
}