如何检查perl中的哈希是否为空

前端之家收集整理的这篇文章主要介绍了如何检查perl中的哈希是否为空前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用下面的代码来检查哈希是否为空。有没有更好的方法,这是安全使用?
if (!keys %hash) { print "Empty";}

解决方法

if (%hash)

会工作很好。

perldoc perldata

If you evaluate a hash in scalar context,it returns false if the hash is empty. If there are any key/value pairs,it returns true; more precisely,the value returned is a string consisting of the number of used buckets and the number of allocated buckets,separated by a slash.

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

猜你在找的Perl相关文章