Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Get reference to newly-created array

by benizi (Hermit)
on Oct 22, 2007 at 21:58 UTC ( [id://646593]=note: print w/replies, xml ) Need Help??


in reply to Re: Get reference to newly-created array
in thread Get reference to newly-created array

By the way, it's =s when you pass a reference to an array, and =s@ when you pass a reference to a scalar.

Both seem to work and do what I want. Is there any particular reason to choose one over the other?

$ cat test-gol.pl #!/usr/bin/perl use Getopt::Long qw/:config pass_through/; my ($array, @array); # option names are: [sa][nw] s=scalar, a=array n=no '@', w=with '@' GetOptions( 'sn=s' => \$array ) or die 'options'; print "Scalar @$array\n"; undef $array; GetOptions( 'sw=s@' => \$array ) or die 'options'; print "Scalar @$array\n"; GetOptions( 'an=s' => \@array ) or die 'options'; print "Array @array\n"; @array = (); GetOptions( 'aw=s@' => \@array ) or die 'options'; print "Array @array\n"; $ perl test-gol.pl --sn one --sn two --sw one --sw two --an one --an t +wo --aw one --aw two Scalar Scalar one two Array one two Array one two

Replies are listed 'Best First'.
Re^2: Get reference to newly-created array
by ikegami (Patriarch) on Oct 23, 2007 at 01:42 UTC

    Both seem to work and do what I want. Is there any particular reason to choose one over the other?

    Yes. One is documented, and the other just happens to work at the moment.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-24 13:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found