Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何计算存储在哈希中的数组元素?当我想改变元素时,我会这样做:
$myObject->{document}->[$i]->{myValue};
不知何故,我不知道如何获得文件的数量。
我是 Perl 新手,我尝试过的所有方法都适用于常规数组,但不适用于存储在哈希中的数组。
只需取消引用arrayref:
my $count = @{ $myObject->{document} };