Perl 本地函数


描述

该函数将 LIST 中的变量设置为当前执行块的本地变量。如果指定了多个值,则必须使用括号来定义列表。

请注意,local 创建变量的本地副本,当封闭块终止时,该副本将超出范围。然后,每当访问本地化值时,就会使用本地化值,包括该块期间使用的任何子例程和格式。

句法

以下是该函数的简单语法 -

local LIST

返回值

该函数不返回任何值。

例子

以下是显示其基本用法的示例代码 -

#!/usr/bin/perl -w

local $foo;			      # make $foo dynamically local
local (@wid, %get);		# make list of variables local
local $foo = "flurp";	  # make $foo dynamic, and init it
local @oof = @bar;		# make @oof dynamic, and init it
perl_function_references.htm