• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    perl中的$a和$b介绍

    即使打开了strict和warnings选项也无妨,下面代码并无错误和警告。

    复制代码 代码如下:

    #!/usr/bin/perl
    use strict;
    use warnings;
    sub test {
        $a = 1;
        $b = 2;
        print $a, "\n";
        print $b, "\n";
    }
    test();
    1;


    下面是perl文档中对这两个变量的解释:

    perldoc perlvar
    $a
    $b Special package variables when using sort(), see "sort" in perlfunc. 
    Because of this specialness $a and $b don't need to be declared (using use vars, or our()) even when using the "strict 'vars'" pragma.  Don't lexicalize them with "my $a" or "my $b" if you want to be able to use them in the sort() comparison block or function.

    上一篇:使用 use re debug 查看正则表达式的匹配过程
    下一篇:perl用{}修饰变量名的写法分享
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    perl中的$a和$b介绍 perl,中的,和,介绍,perl,中的,