I have been using Perl for some time, but today I came across this code:
sub function1($$)
{
//snip
}
What does this mean in Perl?
|
I have been using Perl for some time, but today I came across this code:
What does this mean in Perl? |
||||
|
|
|
It is a function with a prototype that takes two scalar arguments. There are strong arguments for not actually using Perl prototypes in general - as noted in the comments below. The strongest argument is probably: There's a discussion on StackOverflow from 2008: There's a possible replacement in the MooseX::Method::Signatures module. |
|||||||||||||||||
|
|
As the other answer mentions, the Imagine you have two functions declared like:
Now when you write something ambiguous, like:
Perl knows where to put the parens; bar takes two args, so it consumes the two closest to it. foo takes one arg, so it takes the result of bar and the two args:
Another example:
The same applies; foo takes one arg, so it gets the 2. bar takes two args, so it gets
This is a pretty important part of Perl, so dismissing it as "never use" is doing you a disservice. Nearly every internal function uses prototypes, so by understanding how they work in your own code, you can get a better understanding of how they're used by the builtins. Then you can avoid unnecessary parentheses, which makes for more pleasant-looking code. Finally, one anti-pattern I will warn you against:
When you are calling code as methods (
or
Unlike |
||||
|
|