Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Anonymous Data Structures: How Do They Work?

by orkysoft (Friar)
on Jan 14, 2002 at 01:11 UTC ( [id://138466]=note: print w/replies, xml ) Need Help??


in reply to Anonymous Data Structures: How Do They Work?

When there is nothing that references a data structure, it will go away. You can't access it, so it's not needed anymore.

Consider this: my $array = [1,2,3];

$array is a scalar -- it is a reference to the anonymous array created with [1,2,3]. It'll have an internal name like ARRAY(0x80cb8fc) or something, which is what is put in $array: try printing it, you'll see a string like that.

This is called a reference, it is magic. You can't just assign $array = "ARRAY(0x80cb8fc)"; and expect it to behave like a reference. It'll be just another string this way.

You can however, say:

my $array = [1,2,3]; my $alias = $array; $alias->[2] = 4; print $array->[2]; # Will produce 4.

In this example, both $array and $alias point to the same anonymous array.

You can also say something like:

my @array = (1,2,3); my $arrayref = \@array; print @$arrayref;
Which will print the contents of the array.

I recommend you read the References tutorial for more information.

The [1,2,3] array is anonymous, since it never gets a name. The reference to it, $array, has a name, but that's not the name of the array itself.

You'll want to use things like this for building e.g. a two-dimensional array, or an array of hashes, or a hash of arrays.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-18 15:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found