如何判断Perl变量中的值是什么类型?

前端之家收集整理的这篇文章主要介绍了如何判断Perl变量中的值是什么类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何判断Perl变量中的值是什么类型?

$ x可能是标量,对数组的引用或对散列(或可能是其他事情)的引用。

解决方法

ref()

Perl provides the ref() function so that you can check the reference type before dereferencing a reference…

By using the ref() function you can protect program code that dereferences variables from producing errors when the wrong type of reference is used…

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

猜你在找的Perl相关文章