Thread Bestimmte Teile eines Arrays durchlaufen - bisher foreach, wie mit for? (4 answers)
Opened by snowmanmh at 2009-06-07 13:48

bloonix
 2009-06-07 14:50
#122400 #122400
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
Hallo snowmanmh,

nur so am Rande... zwischen for und foreach gibt es keinen Unterschied,
ausser vielleicht einigen Schönheitsidealen :-)

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
for     (my $i=1; $i<=3; $i++) { print $i }
foreach (my $i=1; $i<=3; $i++) { print $i }

my @array = (1..3);

for (@array) { print }
foreach (@array) { print }

my %hash = (1,1,2,2,3,3);

for (sort keys %hash) { print }
foreach (sort keys %hash) { print }
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Bestimmte Teile eines Arrays durchlaufen - bisher foreach, wie mit for?