I know there are several question about the x++ operation, I know the difference between ++x and x++. But now I have to solve this:
int x = 5; x += x++ * x++ * x++; Well I know that this shouldn't be too difficult, but still, I need an explanation how this calculatino is done, step by step, I don't get it by myself..
0 += x++ * x++ * x++,x += x++ * x++,x += (x++ * x++) * x++, etc.), or consult the JLS.