why can I not use the dummy parameter in postfix operator++ like someClassObject++5?
Due to the maximal munch rule, the expression
t1++x
is parsed as
t1 ++ x
and grouped as
(t1 ++) x
This makes no sense; rather like t1 x
makes no sense.