编码:
my $compare = List::Compare->new(\@hand, \@new_hand);
print_cards("Discarded", $compare->get_Lonly()) if ($verbose);
print_cards
期望(标量,对数组的引用)。
get_Lonly
返回数组。将其转换为引用以便我可以将其传递给 print_cards 的语法是什么? \@{$compare->getLonly()}
例如,不起作用。
谢谢!
编码:
my $compare = List::Compare->new(\@hand, \@new_hand);
print_cards("Discarded", $compare->get_Lonly()) if ($verbose);
print_cards
期望(标量,对数组的引用)。
get_Lonly
返回数组。将其转换为引用以便我可以将其传递给 print_cards 的语法是什么? \@{$compare->getLonly()}
例如,不起作用。
谢谢!