Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^4: Puzzled by array

by kiat (Vicar)
on Jul 06, 2005 at 17:23 UTC ( [id://472889]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Puzzled by array
in thread Puzzled by array

Ah thanks :) But please bear with this nagging question: why doesn't \@letters point to the changed @letters inside the loop?

Update

Maybe I understand now...see modified code below:

use strict; my $some_word = 'race'; my @letters = split //, $some_word; my (@array1, @array2); # Added this to show that the same $letter_ref is pushed into @array2 my $letters_ref = \@letters; for (1..@letters) { my @new = @letters; push (@array1, \@new); push (@array2, $letters_ref); my $myshift = shift @letters; push(@letters, $myshift); }
Update 2

My above reasoning was wrong. See my reply to neniro at Re^2: Puzzled by array

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (1)
As of 2024-04-25 00:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found