作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以将两个列表传递给 sub
在 Perl 中,例如:
sub Foo {
my(@list1,@list2) = @_;
}
@_
两个列表,每个子列表都是所需的参数,我只是想知道是否有更清洁的方法
最佳答案
好吧,如果你想要两个 数组 你可以使用原型(prototype):
sub foo (\@\@) {
my $arr1 = shift;
my $arr2 = shift;
# Access arrays as references
}
foo( @wiz, @waz ); # @wiz and @waz won't be flattened.
sub foo {
my $arr1 = shift;
my $arr2 = shift;
# Access arrays as references
}
foo( \@wiz, \@waz ); # Pass in wiz/waz as refs
foo( [1,2,4],[3,5,6] ); # Hard coded arrays
关于perl - 如何将两个列表传递给 Perl 子例程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2883997/
我是一名优秀的程序员,十分优秀!