I was creating a multi-dimensional array this way:
#!/usr/bin/perl
use warnings;
use strict;
my @a1 = (1,2);
my @a2 = (@a1,3);
But it turns out that I still got a one-dimensional array...
What's the right way in perl?
|
I was creating a multi-dimensional array this way:
But it turns out that I still got a one-dimensional array... What's the right way in perl? |
|||||
|
|
You get a one-dimensional array because the array
Then your second statement is equivalent to When creating a multi-dimensional array, you have a few choices:
The first option is basically The second is doing this: A variation of the second option is doing this: The third option, a bit more obscure, is doing this: Note the difference between Parens on the other hand do nothing at all really, except change the precedence of operators. Consider this piece of code:
This will print
Because commas ( What parens do is simply negate the default precedence of So, in short, brackets There is much to read in the documentation. Someone here once showed me a very good link for dereferencing, but I don't recall what it is. In perldoc perlreftut you will find a basic tutorial on references. And in perldoc perldsc you will find documentation on data structures (thanks Oesor for reminding me). |
|||||||||
|
|
I would propose to work through The tutorials complement each other and I think they would take better effect together. Visualizing data structures helped me a lot to believe they actually work (seriously) and to see my mistakes. |
||||
|
|
|
Arrays contain scalars, so you need to add a reference.
You'll want to read http://perldoc.perl.org/perldsc.html. |
|||||||||||||
|
Now, because the top level contains only references, if you try to print out your array in with a simple print() function, you'll get something that doesn't look very nice, like this:
That's because Perl doesn't (ever) implicitly dereference your variables. If you want to get at the thing a reference is referring to, then you have to do this yourself using either prefix typing indicators, like Source: perldoc Now coming to your question. Here's your code:
Notice that the arrays contain scalar values. So you have to use reference and you can add a reference by using the Like this:
|
|||
|
|
|
Inner arrays should be scalar references in the outer one:
|
|||
|
|
|
This is a simple example of 2D array as ref
|
||||
|
|