Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: How can I define arrays using foreach loop

by bronto (Priest)
on Jul 17, 2002 at 10:03 UTC ( [id://182370]=note: print w/replies, xml ) Need Help??


in reply to How can I define arrays using foreach loop

In @bigarray = (@array_1, @array_2, @array_3, @array_4,@array_5, @array_6) ; you don't get an array of arrays, but a plain array with (a copy of) the elements of @array_#s. You should change it to:

@bigarray = (\@array_1, \@array_2, \@array_3, \@array_4, \@array_5, \@array_6) ;

That is, @bigarray contains references to the @array_#s.

You are using a foreach syntax for a for cycle. If you want to stick on for, change your foreach in for, and then:

push @{$bigarray[$thearray[$i]]}, [$line, $column[$thearray[$i]];

Since you are dereferencing $bigarray[$thearray[$i]], you are really pushing into @array_$i

If you want to use foreach you could just change your loop to

foreach my $i (@thearray) { push @{$bigarray[$i]}, [$line, $column[$i]]; }

Whatever you prefer, it's a matter of style :-)

Ciao!
--bronto

# Another Perl edition of a song:
# The End, by The Beatles
END {
  $you->take($love) eq $you->made($love) ;
}

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://182370]
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: (5)
As of 2024-04-23 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found