Execution of x++

D

Debaser

I was surprised to learn in class today that given a pointer p, the
statement:
*p++;
dereferences first and then increments the pointer. So say p points to
an array location array[4]. During execution p would be dereferenced
and THEN increment p to point to array[5]. Our professor says that
when operators have equal precedence, you read from right to left. So
I'm left wondering, what is the rule for determining when exactly a
post-increment executes? What if it were the statement:
*(p++);
Same thing?

-Mike-
 
?

=?ISO-8859-15?Q?Juli=E1n?= Albo

Debaser said:
I was surprised to learn in class today that given a pointer p, the
statement:
*p++;
dereferences first and then increments the pointer. So say p points to
an array location array[4]. During execution p would be dereferenced
and THEN increment p to point to array[5]. Our professor says that
when operators have equal precedence, you read from right to left. So
I'm left wondering, what is the rule for determining when exactly a

Think about the operator as if it were a function:

* increment (p)

The value returned is one thing, the secondary effect on p is another.
 
A

Andrey Tarasevich

Debaser said:
I was surprised to learn in class today that given a pointer p, the
statement:
*p++;
dereferences first and then increments the pointer.

That's incorrect. There's no such thing as "first" and "then" in this
case. Relative precedence of operators '*' and post-'++' means only one
thing: '++' applies to 'p' and '*' applies to the result of 'p++', which
is the original value of 'p'. The only requirement that must be
satisfied is that these operators receive these correct values as
parameters. Which one will be applied first in this case is absolutely
unpredictable.
So say p points to
an array location array[4]. During execution p would be dereferenced
and THEN increment p to point to array[5].

No. Not necessarily. It can be done the way you describe. Or it can be
done in completely opposite order. For example, 'p' could be incremented
first, and only then the old value of 'p' (previously stored somewhere)
could be dereferenced.
Our professor says that
when operators have equal precedence, you read from right to left.

That's correct. But the important thing your professor didn't seem to
tell you is that precedence only defines the grouping of operators and
their operands. It does not define the temporal ordering of operations.
So
I'm left wondering, what is the rule for determining when exactly a
post-increment executes?

As long as you are dealing with built-in operators, there's no such
rule. In C++ language two actions are ordered in time if and only if
they are separated by at least one sequence point. Actions that are not
separated by sequence points can be executed in arbitrary order (as long
as their semantics remains unchanged). Expression '*p++' has no sequence
points inside, which means that nothing can be said about what happens
"first" and what happens "second".
What if it were the statement:
*(p++);
Same thing?

Yes, exactly the same thing. Parentheses affect grouping of operators
and their operands. They have no effect on the order of operations.

Read about sequence points and remember a simple rule: no sequence point
- no ordering.
 
A

Andrey Tarasevich

Andrey said:
...

That's correct. But the important thing your professor didn't seem to
tell you is that precedence only defines the grouping of operators and
their operands. It does not define the temporal ordering of operations.
...

Oops. That's, of course, incorrect.

When you are dealing with _binary_ operators of equal precedence, the
order in which you "read" is defined by _associativity_ of those
operators. With arithmetical operators, for example, you read from left
to right.

When you are dealing with _unary_ operators, the simple rule is that
postfix operators always have higher precedence than prefix operators.
That's how it works in case of '*p++'.
 
G

Gary Labowitz

Andrey Tarasevich said:
Debaser wrote:

That's correct. But the important thing your professor didn't seem to
tell you is that precedence only defines the grouping of operators and
their operands. It does not define the temporal ordering of operations.

Huh? Not all operators of equal precendence are "read" from right to left.
That "read" in there makes me wonder what is meant. Certainly not how they
are evaluated. Operators are evaluated any way the compiler wishes (with no
sequence point).
What do you suppose this professor means?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top