如何在Perl中为先前声明的变量分配返回值?是否有类似这样的方法:
use strict;
use warnings;
my ($a, $b, $c) = first_assign();
# let's say $a = "a", $b = "b", $c = "c"
($a, $b, $c) = second_assign();
# let's say we expect them to be "aa", "bb" and "cc" correspondingly
在这种情况下,所有这些变量都将等于“”。那么,是否有某种特殊的方法可以一次赋值给许多先前声明的变量呢?
1条答案
按热度按时间pn9klfpd1#
只需从赋值方法返回一个元组:
这会产生下列输出: