Thread for vs. foreach (5 answers)
Opened by Escape at 2010-01-20 17:18

renee
 2010-01-20 17:23
#130934 #130934
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Nein, weil for und foreach da beide das gleiche machen:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
jars@jars-desktop:~$ perl -MO=Deparse -e 'my %hash; $hash{$_} = 1 for 1..10'
my %hash;
;
$hash{$_} = 1 foreach (1 .. 10);
-e syntax OK
jars@jars-desktop:~$ perl -MO=Deparse -e 'my %hash; $hash{$_} = 1 foreach 1..10'
my %hash;
;
$hash{$_} = 1 foreach (1 .. 10);
-e syntax OK
jars@jars-desktop:~$


Hast Du ein Beispielprogramm, dass wir testen können?
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread for vs. foreach