Perl Language
特殊変数
サーチ…
備考
TO DO:コンテンツを追加します。
perlの特殊変数:
1. $_
:デフォルトの入力およびパターン検索スペース。
例1:
my @array_variable = (1 2 3 4);
foreach (@array_variable){
print $_."\n"; # $_ will get the value 1,2,3,4 in loop, if no other variable is supplied.
}
例2:
while (<FH>){
chomp($_); # $_ refers to the iterating lines in the loop.
}
次の関数は、 $_
をデフォルト引数として使用します。
abs, alarm, chomp, chop, chr, chroot, cos, defined, eval,
evalbytes, exp, fc, glob, hex, int, lc, lcfirst, length, log,
lstat, mkdir, oct, ord, pos, print, printf, quotemeta, readlink,
readpipe, ref, require, reverse (in scalar context only), rmdir,
say, sin, split (for its second argument), sqrt, stat, study,
uc, ucfirst, unlink, unpack.
2. @_
:この配列には、サブルーチンに渡される引数が含まれています。
例1:
example_sub( $test1, $test2, $test3 );
sub example_sub {
my ( $test1, $test2, $test3 ) = @_;
}
サブルーチン内では、配列@_
にはそのサブルーチンに渡される引数が含まれています 。サブルーチンの@_
で、配列演算子pop
とshift
のdefault
配列は@_
です。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow