perl 中的my和全局變量

$Some::stuff 使用包some的標準變量$stuff our 把名字限制於一個做用域, local 把值限制於一個做用域, my 把名字和值都限制於一個做用域 my變量: [root@master Webqq]# cat t5.pl {my $var=11;print "\$var is 1--$var\n";}{print "\$var is 2--$var\n"};
相關文章
相關標籤/搜索