In the below code, compiler error with message 'method is ambiguous'.
If I comment the method with StringBuffer as argument it compiles and gives "Object" as output. Can somebody explain why this happen ?
Anupam Sinha
Ranch Hand
Joined: Apr 13, 2003
Posts: 1088
posted
0
Even if you comment the method that takes in a String argument it would work. The reason is that null is a valid argument for Object, String and StringBuffer. But the method with closest match is chosen over other methods for execution. Now when we have methods that accept Object type and String type of argument. String is more specific so the compiler knows that String method should be used. But when you have two or more completely different things(no where related in the class hierarchy) as the argumnet it is impossible for the compiler to determine which method should be called. Hence the error.
Manfred Klug
Ranch Hand
Joined: Jun 04, 2007
Posts: 377
posted
0
Originally posted by Anupam Sinha: But when you have two or more completely different things(no where related in the class hierarchy) as the argumnet it is impossible for the compiler to determine which method should be called. Hence the error.
Even if the classes are related in the class hierarchy, it may be impossible for the compiler to decide which function should be called.
Shubha Kirani
Greenhorn
Joined: Jun 13, 2007
Posts: 12
posted
0
Thanks Anupam and Manfred for your replies. I'm understanding Java better now.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.