If you overload myMethod(Object) with myMethod(String) and call
with myMethod(null), compiler will consider myMethod(String) as
more specific and call it.
If you have myMethod(Integer) as well myMethod(String), they
are equally specific as both extend Object directly.
[This message has been edited by rajsim (edited August 07, 2000).]