我在在线示例Perl脚本中的变量名前面一直看到“my”关键字,但我不知道这是什么意思。我尝试在线阅读手册页和其他网站,但我很难辨别是什么,因为我如何看到它的使用和手册之间的区别。
例如,它用于获取数组在这篇文章中的长度:
Find Size of Array in Perl
但是手册说:
A my declares the listed variables to be local (lexically) to the
enclosing block,file,or eval. If more than one value is listed,the
list must be placed in parentheses.
它做什么,如何使用?