• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

which method to use?

 
Ranch Hand
Posts: 133
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
from sanjayahuja.tripod.com (with modifications)

I thought this would be a compile error, 'coz method(null) would be ambiguous (it wouldn't know which method() will be invoked.) But it compiles and prints out "Integer Version" when run! Also, when method(String) is uncommented out, then the compiler complains about ambiguous methods.
 
Ranch Hand
Posts: 84
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Note the inheritance tree:
Object
|
+-Number
++|
+++-Integer
Since null is compatible to any object, the one furthest down the compatible path will be chosen, in this case, Integer.
If you also have the overloaded method with the String parameter, then that will create two compatible paths for null, which causes the ambiguous methods error.
[ June 19, 2002: Message edited by: Tybon Wu ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic