當前位置:首頁 » Perl » Perl my()函數

Perl my()函數

perl my()函數例子,my()函數學習,my()函數實例代碼,my()函數教學等

語法

my LIST


定義和用法

聲明變量在LIST中,在詞法範圍內封閉塊。如果指定了一個以上的變量,所有變量都必須用括號括起來。

返回值

實例

試試下麵的例子:

#!/usr/bin/perl -w
#by www.gitbook.net

my $string = "We are the world";
print "$string\n";
myfunction();
print "$string\n";

sub myfunction
{
   my $string = "We are the function";
   print "$string\n";
   mysub();
}
sub mysub
{
   print "$string\n";
}

這將產生以下結果:

We are the world
We are the function
We are the world
We are the world