perl의 $a와 $b 소개

780 단어
strict와 Warnings 옵션을 열어도 괜찮습니다. 다음 코드는 오류나 경고가 없습니다.
 
  
#!/usr/bin/perl
use strict;
use warnings;
sub test {
    $a = 1;
    $b = 2;
    print $a, "
";
    print $b, "
";
}
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.

좋은 웹페이지 즐겨찾기