Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

perl function with otpional parameters

Status
Not open for further replies.

donny750

Programmer
Jul 13, 2006
145
FR
hi,

It's possible to create a perl function with optional parameter ?
For example,
i can call my function like this
test(param1) or test(param1,optionalparam)


Thanks
 
Yes it is. Obviously in the function you will need to test for one, two or more parameters passed. Perl is very 'relaxed' about this sort of thing. Don't pass enough parameters and Perl says it will assume 'null' or 'empty string'. Pass too many parameters and Perl ignores the excess.

I hope that helps.

Mike
 
Hi,

You declare the function first of all using a prototype, telling Perl how the function will be called. Like this.

sub myfunction ($$$;$);

This tells Perl that later on in your script you will be defining a function called myfunction which must be called with at least 3 scalars in the parameter list and may have 4.

and like this.

sub my2ndfunction ($%);

This tells Perl that later on in your script you will be defining a function called my2ndfunction which must be called with one scalar and one hash in the parameter list.

A semicolon separates mandatory arguments from the optional. It isn't useful before a @ or %, as these take variable numbers of arguments themselves and will just "gobble up" any other parameters in the list.

More information in the Perl documentation in perlsub - look for the section on Prototypes.

Mike

The options are: fast, cheap and right - pick any two... [orientalbow] & [anakin]

Want great answers to your Tek-Tips questions? Have a look at faq219-2884
 
yes, i've see
thanks
if i pass any value for a parameter,
perl ignore him
 
a sub or function is the same thing ?

my function is like this
Code:
sub cal {
my var1 = shift;
my var2 = shift;

...code...


}
 
In perl, the term subroutine and function can be used interchangeably. The difference is really between a prototype, which MikeLacey described above, and a function/subroutine.

I doubt you need to use a protoype, but maybe there is a reason.



- Kevin, perl coder unexceptional!
 
Most people don't use prototypes, they just shift off the parameters and examine them inside the sub, applying defaults for any that are missing or die if they are mandatory.

Steve

[small]"Every program can be reduced by one instruction, and every program has at least one bug. Therefore, any program can be reduced to one instruction which doesn't work." (Object::perlDesignPatterns)[/small]
 
Perl has a neat little construct to save all that 'shifting', as follows:
Code:
   sub cal {
   my ($var1, $var2) = @_;

   ... code ...
   }

I hope that helps.

Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top