Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Puzzled by array

by Tanktalus (Canon)
on Jul 06, 2005 at 16:53 UTC ( [id://472875]=note: print w/replies, xml ) Need Help??


in reply to Puzzled by array

It's because @array2 is an array of references - all to the same @letters array. @array1 is an array of references - but each element in @array1 is a separate reference to a separate array - that array is @new which is created each time through the loop.

As you modify @letters, @array2's members are changed because they are the same. But @new isn't modified again after it's assigned into the @array1 list, so you're getting a snapshot of each point through the list.

Unlike C, in perl when you create a new variable with "my", you actually get a new variable, unique from all similarly named variables that came before it, and unique from all dissimilarly named variables that came before it. You can take a reference to it, and that variable will not disappear until all references to it go away as well. After going through the loop, all you're left with is anonymous references to all the old @new's.

Hope that helps,

Update: Note to revdiablo - on original reading of the code, I actually expected @array2 to be the one changed, and not @array1. So maybe I understand the confusion a bit ;-)

Replies are listed 'Best First'.
Re^2: Puzzled by array
by kiat (Vicar) on Jul 06, 2005 at 17:16 UTC
    Thanks Tanktalus :)

    As you modify @letters, @array2's members are changed because they are the same.
    Should are be aren't?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 12:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found