When I try to write a postfix/prefix in/decrement, followed by a post/prefix in/decrement, I get the following error: Invalid argument to operation ++/--.

But, according to JLS:

PostIncrementExpression:
        PostfixExpression ++

and

PostfixExpression:
        Primary
        ExpressionName
        PostIncrementExpression
        PostDecrementExpression

so writing:

PostfixExpression ++ ++

should be possible... Any thoughts?

link|improve this question

3  
What does i++ return? – Anon. Jan 10 '11 at 21:20
5  
Don't you think that --++----++var++----++--++ might be a little bit confusing? – Crozin Jan 10 '11 at 21:21
2  
Given that the increment of C++ is C#, have you tried using i#? ;-) – John Topley Jan 10 '11 at 21:22
@Anon - i++ returns a value, not a reference... That's my answer. :) – John Assymptoth Jan 10 '11 at 21:23
1  
@Crozin - What does it matter if it is confusing or not. I'm producing a meta program, I need to know this kind of stuff. – John Assymptoth Jan 10 '11 at 21:24
show 2 more comments
feedback

8 Answers

up vote 19 down vote accepted

Note that the raw grammar lacks any semantics. It's just syntax, and not every syntactically valid program will generally be valid. For example, the requirement that variables have to be declared before usage is typically not covered by the grammar (you can, but it's cumbersome).

Postfix-increment yields an rvalue – and just as you cannot postfix-increment literals, you cannot postfix-increment the result of i++.

Quoting from the JLS (3rd ed., page 486):

The result of the postfix increment expression is not a variable, but a value.

link|improve this answer
You can encode declaration-before-use into the grammer? For any number of any identifiers? – delnan Jan 10 '11 at 21:30
@delnan: Van Wijngaarden grammars were conceived for such things, yes. But for all practical purposes, two-level grammars are unwieldy and you can achieve much of the same with a simple attributed grammar that defines assertions that are propagated down the AST (if I recall correctly; it's been a few years since that class). – Joey Jan 10 '11 at 21:32
feedback

The error tells you the answer:

unexpected type
required: variable
found   : value
        (i++)++;

So, the i++ evaluates to a value while the operator requires a variable.

link|improve this answer
2  
Hm, depends on the compiler, I guess. EclipseC yields »Invalid argument to operation ++/--« which is not as helpful. – Joey Jan 10 '11 at 21:25
Interesting. Yea, that's not nearly as helpful. The error above is from the Sun compiler. – JOTN Jan 10 '11 at 21:37
feedback

You can only apply ++ or -- to an expression that denotes a modifiable location (an lvalue). The RESULT of a ++ or -- is the value from the location (an rvalue -- either before or after the increment or decrement), and not itself a modifiable location. So you can't say (a++)++ any more than you can say (a+b)++ -- there's no location to be modified.

link|improve this answer
feedback

i++ is basically a shortcut for:

(i = i+1)

And it wouldn't make any sense to write:

(i = i+1)++;

right? :)

link|improve this answer
3  
(i = i + 1) is not the same behaviour as (i++) - the former returns the new value of i, the latter returns the old one. – Anon. Jan 10 '11 at 21:45
Sorry. I guess I didn't pick a good smiley that conveys facetiousness. My Bad. -1 to myself for this. – Kylar Jan 11 '11 at 0:30
feedback

What should be the result of such an operation? The result of i++ is (a copy of) the current value of i, and i is incremented afterwards (post). So how do you imagine incrementing the result of i++ once again? If i originally was 1, what should its value be after i++++, and what should be the result of this operation?

If you think about it, you probably realize it would be very difficult to define this properly. Since the designers of Java intended to avoid the C/C++ "undefined" traps (and since the value of such a statement is dubious at best), they probably decided to explicitly disallow it.

link|improve this answer
No, that's not why. The reason, as stated in other answers, is because the result of the expression i++ is a value, not a reference that can be altered. – John Assymptoth Jan 10 '11 at 21:30
@John, so what was the point of your question then? – Péter Török Jan 10 '11 at 21:34
I remembered that because of the comments/answers. – John Assymptoth Jan 10 '11 at 21:36
@John, me too, but thanks for noting anyway :-) – Péter Török Jan 10 '11 at 21:37
feedback

What you trying to achieve by (i++)++ ?

increment it twice!!

Use Looping

Increment inside a loop :)

link|improve this answer
3  
Ugghh. Surely i+=2 is better than a loop. – Stephen C Jan 10 '11 at 22:17
feedback

In i++, ++ is a postfix operator, so it returns the value of i and then increments it. What would you want (i++)++ to do? Should it return i+1 since (i++ == i )? If not wouldn't that be strange that i++=i but (i++)++ != i) consider the following expressions:

i++  ==  i;   // true
j = i++  // j gets the value of i
j++ == i //  still true since j== i

(i++) ++ ==  j ++    //  what should be the answer here?

Have you considered i+=2?

link|improve this answer
feedback

Why don't you just use the shorthand increment operator?

i+=2

There.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.