| Author |
error- ambiguous reference to method
|
Astha Sharma
Ranch Hand
Joined: Oct 15, 2011
Posts: 207
|
|
Why i am getting error "reference to A is ambiguous, both method A(float...) in Test and method A(double...) in Test match" in this code?
|
 |
Sebanti Sanyal
Ranch Hand
Joined: Nov 07, 2011
Posts: 58
|
|
You may find this thread useful.
link
|
 |
Astha Sharma
Ranch Hand
Joined: Oct 15, 2011
Posts: 207
|
|
thanks Sebanti
reading that discussion I concluded that var-args in any case have same priority. It doesn't matter wether it is
or
or
with a call
all have same priority. Thats why it is ambigous for compiler to predict the call. Am I right?
|
 |
Astha Sharma
Ranch Hand
Joined: Oct 15, 2011
Posts: 207
|
|
but if it is so, the why this is allowed?
|
 |
Bogdan Todasca
Greenhorn
Joined: Feb 12, 2012
Posts: 1
|
|
Hi
For objects there are no concepts like narrowing or widening as there are for primitives but only upcasting/downcasting if the 2 belong to the same hierarchy.
For example, this won't work:
Long it's NOT an Integer(they both extend Number but there is no direct link between them in the hierarchy) even if long(the primitive) can be seen as an integer through widening.
This won't work neither:
Best,
Astha Sharma wrote:but if it is so, the why this is allowed?
|
 |
Ratnesh Navlakhe
Greenhorn
Joined: Feb 12, 2012
Posts: 1
|
|
In this code
you are overloading the methods with the same name
so the compiler is unable to search for that specific method
and don't use dot(..) in the method arguments .
class Test
{
void A(int a){
System.out.println("in int");
}
void A(float a){
System.out.println("in float");
}
void A(double a){
System.out.println("in double");
}
public static void main(String[]args)
{
Test a=new Test();
a.A(7);
}
}
copy and run it
|
 |
Astha Sharma
Ranch Hand
Joined: Oct 15, 2011
Posts: 207
|
|
no one is answring my question
I am asking that why this
is allowed while this or this is not allowed?
|
 |
 |
|
|
subject: error- ambiguous reference to method
|
|
|