Perl my 函数

  • 描述

    my 此函数声明LIST中的变量在封闭块内按词法作用域。如果指定了多个变量,则所有变量都必须用括号括起来。
  • 句法

    以下是此函数的简单语法-
    
    my LIST
    
  • 返回值

    此函数不返回任何值。
  • 示例

    以下是显示其基本用法的示例代码-
     
    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