Why is the return type not considered when differentiating methods?
- by Silent Warrior
The compiler does not consider return
type when differentiating methods, so
you cannot declare two methods with
the same signature even if they have a
different return type.
Java Tutorial
Why is this?