Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: What is HASH(0x17653d4) for?

by premchai21 (Curate)
on Nov 02, 2001 at 01:15 UTC ( [id://122677]=note: print w/replies, xml ) Need Help??


in reply to What is HASH(0x17653d4) for?

A stringified reference indicates the type and address of that which the original reference referenced. They are unique to the point that references to different entities will have different stringifications. Note however that you cannot get the original reference back from the stringified version; you cannot, for instance, do this:
my $x = 5; my $y = \$x; $y = "$y"; $$y = 8; # Error! $y is now the stringified form # of the reference, and can't be referenced.

Log In?
Username:
Password:

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

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

    No recent polls found