Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following java code will not execute.

class A{

int sqrt(int a)
{
}

float sqrt(int a)
{

}


int a1 = sqrt(a);
float b1= sqrt(b);



}

In interview i was asked by a question that why java compiler does not check the data type and call that method accordingly. What is the reason?

share|improve this question

4 Answers

up vote 5 down vote accepted

Those methods have the same signature (identifier + parameter list), which is illegal.

share|improve this answer
What about the fact that he's also attempting to use a variable that (probably) hasn't been initialized yet, to help create itself (rescursive self-reference)? – Clockwork-Muse Jul 26 '11 at 20:59

The reason the compiler won't allow this is that it is not always possible to infer the desired data type. For example, Java supports "boxing" of native values into objects, so you should be able to do this:

ArrayList<Object> list = new ArrayList<Object>();
list.add(a.sqrt(4));

In code like this, it would be literally impossible for the compiler to figure out whether you wanted to call the method that returns a float or the method that returns an int.

share|improve this answer

If you have 2 methods with same name and same parameters of same data types then java compiler will not even let you compile the code. It should say that method "sqrt" is already defined. So it's illegal in java.

share|improve this answer

I asked when i was a beginner in programming. . Let me give the answer myself. It always checks the return type of method and call that method accordingly . In case of

int a1 = sqrt(a);

it will call method whose return type is integer.

share|improve this answer
I think its the polymorphic behaviour of function and I suppose(as I don't have java setup on mysystem yet) it will call method according to desired response by user as you need int respone in your answer – Taimoor Changaiz Feb 8 at 15:14

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.