Perl Language
Variabili speciali
Ricerca…
Osservazioni
DA FARE: aggiungere più contenuti.
Variabili speciali in perl:
1. $_
: input predefinito e spazio per la ricerca del modello.
Esempio 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.
}
Esempio 2:
while (<FH>){
chomp($_); # $_ refers to the iterating lines in the loop.
}
Le seguenti funzioni utilizzano $_
come argomento predefinito:
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. @_
: questa matrice contiene gli argomenti passati alla subroutine.
Esempio 1:
example_sub( $test1, $test2, $test3 );
sub example_sub {
my ( $test1, $test2, $test3 ) = @_;
}
All'interno di una subroutine, la matrice @_
contiene gli argomenti passati a quella subroutine. All'interno di una subroutine, @_
è l'array default
per gli operatori di array pop
e shift
.
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow