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)
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.
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... &
Want great answers to your Tek-Tips questions? Have a look at faq219-2884
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.
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:erlDesignPatterns)[/small]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.