perl use vars pragma的使用实例

发布时间:2019-10-29编辑:脚本学堂
perl 中的vars是perl中的一个pragma(预编译指示符),专门用来预定义全局变量,这些预定义后的全局变量在qw()列表中,在整个引用perl文件中皆可使用,即便使用use strict也不会报错。

perl 中的vars是perl中的一个pragma(预编译指示符),专门用来预定义全局变量,这些预定义后的全局变量在qw()列表中,在整个引用perl文件中皆可使用,即便使用use strict也不会报错。

不使用use vars的例子:
 

复制代码 代码如下:
#!/bin/perl
use strict ;
$str = "hello world!n" ;

报错信息:Global symbol "$str" requires explicit package name at ~vars.pl line 3.
Execution of ~vars.pl aborted due to complication errors.

引用use vars:
 

复制代码 代码如下:

#!/bin/perl
use strict ;
use vars qw($str) ;

$str = "hello world!n" ;
print $str ;

输出结果:
hello world!