欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

perl use vars pragma使用技巧

程序员文章站 2022-03-22 13:36:52
perl 中的vars是perl中的一个pragma(预编译指示符),专门用来预定义全局变量,这些预定义后的全局变量在qw()列表中,在整个引用perl文件中皆可使用,即便...

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

复制代码 代码如下:

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后执行结果:

复制代码 代码如下:

use strict ;
use vars qw($str) ;
$str = "hello world!\n" ;
print $str ;

output :

hello world!