Thread for-schleife: wie ging das nochmal? (8 answers)
Opened by pktm at 2004-07-23 18:44

format_c
 2004-07-23 22:34
#84886 #84886
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
Ich mache das immer mit scalar. Hab mal gehört, dass $# langsamer sein soll.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
format_c@server:~> perl
my $arrayref = [qw/eins zwei drei vier/];
for (0 .. scalar @$arrayref - 1) {
print "Nr: ",$_,"\n";
}

Nr: 0
Nr: 1
Nr: 2
Nr: 3
format_c@server:~>


Gruß Alex

View full thread for-schleife: wie ging das nochmal?