int i = 8;
int b = (i++) + (i++) + (i++);
In the above code,When actually i
increase?
I'm not familiar with C,it turns out i
will increase after each postfix increment execute in Java.
Does anyone knows the detail?
int i = 8;
int b = (i++) + (i++) + (i++);
In the above code,When actually i
increase?
I'm not familiar with C,it turns out i
will increase after each postfix increment execute in Java.
Does anyone knows the detail?