Tagged Questions
6
votes
6answers
318 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
...
8
votes
3answers
200 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 ...