Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to access a method in a class I made, but since it is similar in name and in number of arguments my IDE says the method is ambiguous. Here's a mock-up of what the two methods look like:

methodName(X, Y, Z)
methodName(A, Y, Z)

I called on the method, and passed in the value null for the first argument for the purpose of my test. Unfortunately I cannot rename the methods, change the order of the arguments or modify the structure of the method in any way. Is there a way I can differentiate between these two methods?

share|improve this question
37  
Find out who designed that API, learn where they live and burn their house down. – alexg May 3 '12 at 20:28
1  
@alexg I seem to remember hitting this before, although I forget which API; it's unlikely to have been new Thread(null, "name") for instance. – Neil May 3 '12 at 20:46
7  
@alexg Since the question said "I'm trying to access a method in a class I made" user1373493 could burn their own house down or redesign the API. – emory May 4 '12 at 0:30
   
@alexg overloading is actually quite common and not necessarily a big problem in Java. This sort of issue only arises with null which doesn't have a type (and autoboxing in some circumstances). – Bruno May 4 '12 at 0:58
@Bruno, it would also arise for every type T implements X, A – emory May 4 '12 at 4:39
show 2 more comments

2 Answers

up vote 88 down vote accepted

Cast the first argument to the type of the first parameter of the method you want to call, for example:

methodName((A) null, y, z);
share|improve this answer
Thanks, worked like a charm. – tamuren May 8 '12 at 19:49

Can you use reflection on the object to acquire the method-list? If so, you could then invoke explicitly the method relevant to you. I do believe fivedigit's answer is probably better though ...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.