I've got the following line of code:
suffix = suffix.isEmpty() ? "1" : Integer.toString(Integer.parseInt(suffix)+1);
in a block where suffix has already been declared as an empty String (""). The block is looking for duplicate file names and adding a number on to any duplicates so they don't have the same name any more.
The line of code above compiles fine, but if I change it to this,
suffix = suffix.isEmpty() ? "1" : Integer.toString(Integer.parseInt(suffix)++);
I get Invalid argument to operation ++/--. Since Integer.parseInt() returns and int, why can't I use the ++ operator?

1++;– Alderath Dec 16 '11 at 15:24n++is the post-increment, meaning that the value ofnwould be returned and then 1 added to it... – nyarlathotep Dec 16 '11 at 15:24n++, the increment doesn't happen after the value is returned. It's just that the value that results from the expression is the value thatnhad before being incremented. – Daniel Pryden Dec 16 '11 at 18:40