如何知道Perl变量中的值类型? [英] How do I tell what type of value is in a Perl variable?

查看:601
本文介绍了如何知道Perl变量中的值类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何知道Perl变量中的值是什么类型?

How do I tell what type of value is in a Perl variable?

$x可能是标量,对数组的引用或对哈希的引用(或其他可能).

$x might be a scalar, a ref to an array or a ref to a hash (or maybe other things).

推荐答案

ref():

Perl提供了ref()函数,因此您可以在取消引用引用之前检查引用类型...

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

使用ref()函数,可以保护使用错误类型的引用时取消引用变量的程序代码不会产生错误...

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

这篇关于如何知道Perl变量中的值类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆