Tagged Questions
103
votes
14answers
5k views
How can “while (i == i) ;” be a non-infinite loop in a single threaded application?
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 ...
6
votes
2answers
729 views
Why does Double.NaN equal itself when wrapped in a Double instance?
From this question I learned Double.NaN is not equal to itself.
I was verifying this for myself and noticed this is not the case if you wrap Double.NaN in a Double instance. For example:
public ...
1
vote
2answers
201 views
Riddle: Spot the serious bug in this bubble sort implementation
(No, this isn't a homework assignment, I just found the bug and thought it might be useful to share it here)
import java.util.List;
public class BubbleSorter {
public <T extends ...