Suche…


Bemerkungen

TO DO: Fügen Sie weitere Inhalte hinzu.

Spezielle Variablen in Perl:

1. $_ : Der Standardbereich für Eingabe und Mustersuche.

Beispiel 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.
}

Beispiel 2

while (<FH>){
    chomp($_);    # $_ refers to the iterating lines in the loop.
}

Die folgenden Funktionen verwenden $_ als Standardargument:

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. @_ : Dieses Array enthält die an die Subroutine übergebenen Argumente.

Beispiel 1:

example_sub( $test1, $test2, $test3 );

sub example_sub {
    my ( $test1, $test2, $test3 ) = @_; 
}

Innerhalb eines Unterprogramms enthält das Array @_ die an dieses Unterprogramm übergebenen Argumente . In einem Unterprogramm, @_ ist das default - Array für den Array Operatoren pop und shift .



Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow