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

Re^2: tie() weirdness

by blazar (Canon)
on Nov 21, 2005 at 15:03 UTC ( [id://510449]=note: print w/replies, xml ) Need Help??


in reply to Re: tie() weirdness
in thread tie() weirdness

It may well be, since

print $s . $s . $s; # still produces the "error", print '' . $s . $s . $s; # makes it go away, # But! print join '', $s, $s, $s; # is fine,

The latter should still be essentially a concatenation in which the first element of the list is the tied variable. So what we're observing should result from an interaction between the tie mechanism and the concatenation operator.

BTW: it is well known that when a bare variable is passed as the first argument of a join, it is re-evaluated every time it's needed, and

print join $s, ('') x 4;

gives me (with the code of Re^2: tie() weirdness)

FETCH called! FETCH called! FETCH called! FETCH called! 123

which is unexpected too, but can be understood in terms of an extra-evaluation.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-25 23:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found