如何在Perl中打印哈希的内容?

前端之家收集整理的这篇文章主要介绍了如何在Perl中打印哈希的内容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我继续打印我的哈希作为#桶/#分配。
如何打印我的哈希的内容

不使用while循环将是最优选的(例如,one-liner将是最好的)。

解决方法

Data::Dumper是你的朋友。
use Data::Dumper;
my %hash = ('abc' => 123,'def' => [4,5,6]);
print Dumper(\%hash);

输出

$VAR1 = {
          'def' => [
                     4,6
                   ],'abc' => 123
        };
原文链接:https://www.f2er.com/Perl/173577.html

猜你在找的Perl相关文章