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

Re: passing an array and some scalars to a subroutne

by olus (Curate)
on Mar 06, 2009 at 14:22 UTC ( [id://748866]=note: print w/replies, xml ) Need Help??


in reply to passing an array and some scalars to a subroutne

You can also shift the args.

Also, since the arguments are passed as a list, you could start considering passing references to the arrays and deref them in the sub. That way you can pass other args after the first array, or multiple arrays (that would otherwise be considered a single one).

use strict; use warnings; my $arg1 = "abc"; my @arg2 = (1, 2, 3, 4); show_args($arg1, \@arg2); sub show_args { my $arg1 = shift; my $arg2 = shift; my @lines = @{$arg2}; print @lines; }

Log In?
Username:
Password:

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

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

    No recent polls found