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

What does java compiler do in this case ?

for(int i=3;i< Math.sqrt(n);i=i+2) 

Math.sqrt returns a double, so does Javac widen i to a double ?

If I want to use the int value back will i need to re-cast it ?

How does this actually work ?

share|improve this question

4 Answers

up vote 4 down vote accepted

Yes, i is widened to a temporary double for the comparison. The value of i itself is unaffected.

share|improve this answer

Math.sqrt returns a double, so does Javac widen i to a double?

Yes

If I want to use the int value back will i need to re-cast it?

Yes

How does this actually work ?

With primitives if you have a type that is wider than the other in the operation, the smaller is automatically converted for you.

share|improve this answer
1  
Explain what you mean on the second point. To use an int as an int, you never have to cast it to an int even if it's been implicitly converted during a comparison. – Jonathon Apr 28 '11 at 19:07
For reference java.sun.com/docs/books/jls/second_edition/html/… 5.6.2 Binary Numeric Promotion – Captain Giraffe Apr 28 '11 at 19:12

What the language rules say is that i will be promoted to a double, and then compared with the return value of sqrt.

The compiler is free to do whatever it likes, as long as it results in the same behaviour.

I would be surprised if any compiler did anything other than promoted i to a double and did a comparison. The promotion is easy and cheap on most architectures. A correct alternative which was faster would be very hard to come up with.

share|improve this answer

There's no widening in Java, in the sense that is implied by the question: "the compiler widens i to a double". If you define a variable as int, it will always be an int. Internally, the representation of some types may be wider than necessary (for instance, a short may be stored as 4-bytes rather than 2), but this is not affected/determined by the way the variable is used.

Specifically, in the loop describes in the question the compiler emits code that converts the double returned from Math.sqrt() into an integer.

You can think of it as if the compiler rewrites the code as follows:

for(int i=3; (double) i < (Math.sqrt(n)); i=i+2)

(thanks to the people who commented. Fixed the snippet)

share|improve this answer
I don't believe that's true. – Tom Anderson Apr 28 '11 at 19:01
1  
It's not; i is promoted, not the other way around. – Ernest Friedman-Hill Apr 28 '11 at 19:03
I think you may have this backwards... – josh.trow Apr 28 '11 at 19:03
There's no widening in the sense that is implied by the question "the compiler widens i to a double". If you define a variable as int, it will always be int. Internally, the representation of some types may be wider than necessary (for instance, a short may be stored as 4-bytes rather than 2), but this is not affected/determined by the way the variable is used. – Itay Maman Apr 28 '11 at 19:04
1  
I think I know what Itay is trying to say in his comment. The type of the variable i is not changed, however the value i at the point of comparison is converted to a double and essentially stored as a temporary variable (of type double) for the comparison. – vickirk Apr 28 '11 at 19:18
show 4 more comments

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.