Tagged Questions
3
votes
4answers
114 views
Which is faster: “null == myObject” or “myObject == null”? [duplicate]
In both Java and .Net, I've heard that using null first if (null == myObject) is more performant than using the object first if (myObject == null). While I think this is probably true, I'm not certain ...
6
votes
6answers
315 views
a += a++ * a++ * a++ in Java. How does it get evaluated?
I came across this problem in this website, and tried it in Eclipse but couldn't understand how exactly they are evaluated.
int x = 3, y = 7, z = 4;
x += x++ * x++ * x++; // gives x = 63
...
5
votes
2answers
260 views
Writing String evaluation function
I'm trying to write a String evaluation function i.e.
evaluate("4 + 1") ; // returns 5
evaluate("4 + 1 + 3") ; // returns 8
evaluate("4 + 1 * 3") ; // returns 7 (not 15)
The operators are + - / ...
8
votes
3answers
197 views
How does expression evaluation order differ between C++ and Java?
I've had my brain wrinkled from trying to understand the examples on this page:
http://answers.yahoo.com/question/index?qid=20091103170907AAxXYG9
More specifically this code:
int j = 4;
cout ...
40
votes
15answers
5k views
a = (a++) * (a++) gives strange results in Java [closed]
I'm studying for the OCPJP exam, and so I have to understand every little strange detail of Java. This includes the order in which the pre- and post-increment operators apply to variables. The ...
33
votes
3answers
3k views
What are the rules for evaluation order in Java?
I am reading some Java text and got the following code:
int[] a = {4,4};
int b = 1;
a[b] = b = 0;
In the text, the author did not give a clear explanation and the effect of the last line is: a[1] = ...
3
votes
4answers
5k views
++i + ++i + ++i in Java vs C
Possible Duplicate:
How do we explain the result of the expression (++x)+(++x)+(++x)?
int i=2;
i = ++i + ++i + ++i;
Which is more correct? Java's result of 12 or C = 13. Or if not a ...
1
vote
8answers
540 views
Confusing return statement
I'm failing to understand exactly what the IF statement is doing, from what I can see it is checking if the variable x is equal to the int 0. If this is true the ABSOLUTE value of the variable y is ...
