该法典甚至没有编纂。 如果没有警告和严格限制,你就会发现这些错误:
Type of arg 1 to shift must be array (not scalar dereference) at so.pl line 5, near "$tmp_first)"
Type of arg 1 to shift must be array (not scalar dereference) at so.pl line 10, near "$tmp_second)"
Execution aborted due to compilation errors.
• 发出警告和严格警告:
Illegal character in prototype for main::do_smth : @first,@second at so.pl line 4.
Global symbol "@first" requires explicit package name at so.pl line 5.
Global symbol "$tmp" requires explicit package name at so.pl line 6.
Global symbol "$tmp_first" requires explicit package name at so.pl line 6.
Type of arg 1 to shift must be array (not scalar dereference) at so.pl line 6, near "$tmp_first)"
Global symbol "@second" requires explicit package name at so.pl line 8.
Global symbol "@second" requires explicit package name at so.pl line 10.
Global symbol "$tmp" requires explicit package name at so.pl line 11.
Global symbol "$tmp_second" requires explicit package name at so.pl line 11.
Type of arg 1 to shift must be array (not scalar dereference) at so.pl line 11, near "$tmp_second)"
Global symbol "@first" requires explicit package name at so.pl line 13.
Execution aborted due to compilation errors.
页: 1
use warnings;
use strict;
sub do_smth (@@); # predeclaration needed since the prototyped sub
# is called recursively
sub do_smth (@@) {
my ($first, $second) = @_;
my @tmp_first = @$first;
my $tmp = shift(@tmp_first);
if (@tmp_first > 0){
do_smth(@tmp_first, @$second);
}
my @tmp_second = @$second;
$tmp = shift(@tmp_second);
if (@tmp_second > 0){
do_smth(@$first, @tmp_second);
}
}