Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Help me to understand increment / decrement operator behavior in perl

by Anonymous Monk
on Mar 04, 2015 at 06:27 UTC ( [id://1118717]=note: print w/replies, xml ) Need Help??


in reply to Help me to understand increment / decrement operator behavior in perl

The C standard says:
Between the previous and next sequence point a scalar object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be accessed only to determine the value to be stored.
The == operator doesn't introduce a sequence point. You're trying to access the prior value of the variable to 1) determine the value to be stored 2) determine the value to be compared with whatever increment operator yields. The C standard calls that 'undefined behavior', which means anything can happen.

perlop says:

Note that just as in C, Perl doesn't define when the variable is incremented or decremented. You just know it will be done sometime before or after the value is returned.
  • Comment on Re: Help me to understand increment / decrement operator behavior in perl

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1118717]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-19 12:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found