vote up 53 vote down star
11

I just got a question that I can't answer.

Suppose you have this loop definition in Java:

while (i == i) ;

What is the type of i and the value of i if the loop is not an infinite loop and the program is using only one thread?

flag
1  
oh for god's sake, would people have the honor to comment as to why they downvote? this is tagged as a riddle, what's the problem??? – nickolai Jan 22 at 23:42
Asshats. An abundance of them. – Andrew Rollings Jan 22 at 23:46
2  
I think some people cannot stop downvoting for anything. – FerranB Jan 22 at 23:48
Bah, sorry for causing this :/ I really just wanted the answer, and I couldn't solve it for myself. – Zizzencs Jan 22 at 23:49
Interesting, I've just learned something new. – Mario Ortegón Jan 22 at 23:54
show 5 more comments

11 Answers

vote up 61 vote down check
double i = Double.NaN;

The API for Double.equals() spells out the answer: "Double.NaN==Double.NaN has the value false". This is elaborated in the Java Language Specification under "Floating-Point Types, Formats, and Values":

NaN is unordered, so the numerical comparison operators <, <=, >, and >= return false if either or both operands are NaN. The equality operator == returns false if either operand is NaN, and the inequality operator != returns true if either operand is NaN. In particular, x!=x is true if and only if x is NaN, and (x<y) == !(x>=y) will be false if x or y is NaN.

link|flag
OH so you CAN do "Not a Number"! – Filip Ekberg Jan 22 at 23:42
IEEE754 specifies "Not a Number", "Positive Infinity", and "Negative infinity" as representable values. – Crashworks Jan 23 at 1:50
Works in C++ too ;) – BigSandwich Jan 23 at 7:20
Ditto for JavaScript; NaN != NaN – Ates Goral Jul 19 at 1:49
2  
its mathematically solid, why should one unreal number equal another? 5/0 != sqrt(-4) – CrazyJugglerDrummer Sep 9 at 1:11
vote up 0 vote down

I was surprised to not see this solution:

while (sin(x) == sin(x)) //probably won't eval to true

In response to a comment, try running this:

double x = 10.5f;
assert (x == asin(sin(x)));

x should always equal the arcsine(sin(x)) in theory, but in practice it doesn't.

link|flag
Why not? You are doing exactly the same calculation on exactly the same data, both results will contain exactly the same error. – Loren Pechtel Jul 19 at 1:53
I can't remember exactly where I read it, but depending on your machine/implementation, the sin(x) on one function call has a miniscule chance of equaling sin(x) of a different call. It has to do with the accuracy of floating point digits (something is special about the trig functions that makes them not return the same value twice). – Hooked Jul 19 at 2:13
See my update. Arcsine "undoes" the sin of x, so they should be equal, but they are not. – Hooked Jul 19 at 2:22
That's not the same thing. Like Loren said, you're performing the exact same operation on x, which should yield the exact same result with the exact same inaccuracy. Arcsin can't reverse the result of a sin with floating point numbers because the value passed to asin() is not going to be exactly accurate. Therefore, the result of asin() will be inaccurate, making x == asin(sin(x)) false. Also, arcsin doesn't necessarily "undo" a sin operation—the sin function can give the same result for multiple values of x, which is why asin() only returns numbers between -π/2 and π/2. – htw Jul 19 at 2:56
You're right, I must have misinterpreted the text I was reading. However, for the original question, my assertion does hold true, since pure math states x == arcsine(sin(x)). Note that I am not a big math buff, but am trying to improve myself, so take everything I say with a grain of salt. – Hooked Jul 19 at 4:56
show 2 more comments
vote up 1 vote down

A common trick in these sort of questions it in the assumption you make that i is an int. Other common assumptions might be s is a String, x,y are a double, ch is a char, b is a byte etc. If you see a question like this you can bet that 'i' is not its expect type.

A similar question is; This never loops, what is 'x'

while(x == x && x != x + 0) { }

Another question I quite like is; This loop is an infinite loop, what are the possible values of x. (: I count twelve of them :)

while(x != 0 && x == -x) { }
link|flag
vote up 0 vote down

I know this is a Java question, but considering the question for other languages is intriguing.

In C, a simple type such as 'int' could exhibit 'terminate before the universe grows cold' behaviour if 'i' was declared as a volatile (so the compiler would be forced to do two reads of 'i' for each iteration) and if 'i' was actually in memory where something else could affect it. Then the loop would terminate when 'i' changed between the two reads of a single iteration. (Added: a possible place - in a micro-computer where 'i' is actually located at the address of an I/O port, perhaps connected to a position sensor. It would be more plausible if 'i' was a pointer variable (a pointer to volatile memory) and the statement was 'while (*i == *i);'.)

As evidenced by other answers, in C++, the '==' operator can be supplied by the user if i is of a user-defined class, so anything might be possible.

Rather like NaN, in an SQL-based language, the loop would not be infinite if the value of i was NULL; however, any non-NULL value would make the loop infinite. This is rather like Java, where any number (as opposed to NaN) makes the loop infinite.

I do not see the construct having any practical use, but it is an interesting trivia question.

link|flag
vote up 8 vote down

I'm not sure, but I believe (i == i) is not atomic operation in multithreaded process, so if i value will be changed by other thread between pushes of it's value to stack on thread executing the loop, then that condition can be false.

link|flag
vote up 1 vote down

Think of Nan as the equivalent of exception but uses a magic value within a calculation. Because a calculation failed - eg square root of a negative, divide by zero etc - it makes no sense in comparing them against anything else. After all if divide by zero is a nan is it equivalent to the square root of -2 or square root of -3 ?

Nan allows a calculation that includes a step that returns an invalid answer to complete without introducing extra exceptions. To verify the answer is value simply test for non nandness ( is that's word if not I bags it) via Float.isNan() o equivalent.

link|flag
3  
It would be easier to think of it as exceptiolbut if I actually knew what an exceptiolbut was :-). – paxdiablo Jan 23 at 0:33
vote up -2 vote down

Unless i is being changed inside the loop?

link|flag
That ";" character marks the end of the loop. There's no code inside it. – paxdiablo Jan 23 at 0:32
The condition is evaluated before the body of the loop, so even if it were being changed within the loop it would still be true, with the exception given in other solutions. – Ignacio Vazquez-Abrams Jan 23 at 1:52
i could be changed from outside the loop concurrently – Steve Kuo Feb 25 at 18:56
vote up 6 vote down
double i = Double.NaN;

NaN is not equal to anything, including itself.

link|flag
vote up 9 vote down
float i = Float.NaN;
while(i == i) ;
System.out.println("Not infinite!");
link|flag
vote up 0 vote down

The only thing I can think of is that someone has overridden the operator== to be something other than ==.

Update: Actually, that's a C++ explanation, not a Java one. Not being a Java programmer, I'm not even sure if operator overloading is possible in Java.

link|flag
The "riddle" is specific to the Java language, which does not allow operator overloading. – William Brendel Jan 22 at 23:40
You can overload in java? Can't you? :O – Filip Ekberg Jan 22 at 23:41
That would be a serious lack of a feature if you couldn't, but I don't know Java either – Ed Swangren Jan 22 at 23:41
3  
No, you can't overload operators. And that lack is a "feature", apparently. Something about "someone could override + to do something confusing like concatenating strings". – Adam Jaskiewicz Jan 22 at 23:46
define: Java Definition of Java; Lacking features. – Filip Ekberg Jan 22 at 23:46
show 4 more comments
vote up 18 vote down

The value of i is then Invalid. "Not a Number".

After some googling, i found out that you CAN have NaN ( Not a Number ) in Java! So, a Float Pointing number is the Data Type and the Value is NaN. See here

link|flag
4  
Yep, That's it. The value of i is Jon Skeet. – Andrew Rollings Jan 22 at 23:39
Yes, double i = Double.NaN – Jaime Soriano Jan 22 at 23:47
I generally hate people who downvote for no reason... I was the first to say "Not a Number" but didnt think java could handle that, since it doesnt handle anything else cool. – Filip Ekberg Jan 22 at 23:47
1  
+1 for being first to say "Not a Number" =) – Zach Scrivena Jan 22 at 23:49

Your Answer

Get an OpenID
or

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