Most probably this question has been asked before but I could not find it here. I was wondering what is the difference between the following two method declarations.
public Object doSomething(Object obj) {....}
public T doSomething(T t) {....}
|
|
|
Isolated from context - no difference. On both But with context - if you have a generic class:
Then:
Same code with object
Two advantages:
|
||||
|
|
|
The difference here is that in the first, we specify that the caller must pass an Object instance (any class), and it will get back another Object (any class, not necessarily of the same type). In the second, the type returned will be the same type as that given when the class was defined.
Here we specify what type T will be which allows us to enforce more constraints on a class or method. For example we can instantiate a The main goal here is that the calling code can specify what type of objects a class will operate upon, instead of relying on type-casting to enforce this. See Java Generics from Oracle. |
|||
|
|
|
At runtime, nothing. But at compile time the second will do type checking to make sure the type of the parameter and the type of the return value match (or are subtypes of) whatever type T resolves to (the first example also does type checking but every object is a subtype of Object so every type will be accepted). |
|||
|
|
|
T is a generic type. Meaning it can be substituted by any qualifying object at runtime. You may invoke such a method as follows:
OR
OR
As you can see, there is polymorphism here. But if it is declared to return Object, you can't do this unless you type cast things. |
|||
|
|
|
in the first case it takes a parameter of any type e.g.string and return a type foo. In the second case it takes a parameter of type foo and returns an object of type foo. |
|||
|
|
|
You don't need to do additional class casting. In first case you will always get an object of class java.lang.Object which you will need to cast to your class. In second case T will be replaced with the class defined in generic signature and no class casting will be needed. |
|||
|
|