Any arguments passed in show up in the
array @_ .
Therefore,if you called a function with two arguments,those
would be stored in $_[0] and $_[1].
The array @_ is a local array,but its
elements are aliases for the actual scalar parameters.
In particular,if
an element $_[0] is updated,the
corresponding argument is updated (or
an error occurs if it is not
updatable).
If an argument is an array or hash element which did not exist when the function was called,that element is created only when (and if) it is modified or a reference to it is taken. (Some earlier versions of Perl created the element whether or not the element was assigned to.) Assigning to the whole array @_ removes that aliasing,and does not update any arguments.
本文解析了Perl中函数调用时如何通过$_数组映射实参,强调了局部变量$_[0]~$_[n]与实际参数的更新关系,并提到了数组或哈希元素动态创建的情况。
1302

被折叠的 条评论
为什么被折叠?



