如何将两个数组分配给Perl中的散列?

前端之家收集整理的这篇文章主要介绍了如何将两个数组分配给Perl中的散列?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两行大代码代码行(所以不能把它写入一个哈希),我想与一个哈希连接。

例如,$ array1 [0]成为键,$ array2 [0]成为值,等等到$ array1 [150],$ array2 [150]。

任何想法我如何做到这一点?

解决方法

您可以在单个作业中执行此操作:
my %hash;
@hash{@array1} = @array2;

这是一个常见的成语。从perldoc perldata on slices

If you’re confused about why you use
an ‘@’ there on a hash slice instead
of a ‘%’,think of it like this. The
type of bracket (square or curly)
governs whether it’s an array or a
hash being looked at. On the other
hand,the leading symbol (‘$’ or ‘@’)
on the array or hash indicates whether
you are getting back a singular value
(a scalar) or a plural one (a list).

当我看到其中的一个,我看到一个拉链的心理形象…

原文链接:https://www.f2er.com/Perl/173309.html

猜你在找的Perl相关文章