Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Ternary Quizical behaviour?

by Eily (Monsignor)
on Jul 10, 2020 at 12:33 UTC ( #11119138=note: print w/replies, xml ) Need Help??


in reply to Ternary Quizical behaviour?

Basically the good practice rule is to not reuse a variable in a statement where you modify it (because you might get tricked by the order of operation, or by some caching mechanism where perl only fetches the value once and uses it several times). An example of such a mistake can be found here (I remember this thread because I've been wrong with an awful lot of confidence, so disregard my answer there :P). And you could also try some variant of your second test:

my %hash2 = ( a => ++$m, b => ++$m, c => ++$m );
#This time you get three times the same value 0 HASH(0x30ef548) 'a' => 3 'b' => 3 'c' => 3

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2023-03-27 00:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (63 votes). Check out past polls.

    Notices?