Skip to content

postunary operators

Keyhan Hadjari edited this page Sep 7, 2016 · 1 revision

Example

public void foo() {
int i = 0;
System.out.println(i++); // prints 0
System.out.println(i); // prints 1
}

Clone this wiki locally