Thread Arrays (5 answers)
Opened by blaise4714 at 2007-04-19 17:03

bloonix
 2007-04-20 12:43
#76061 #76061
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
[quote=renee,19.04.2007, 15:09]
Code: (dl )
1
2
3
4
5
for my $i(0..$#test1){
   if($test1[$i] == 0){
       $test1[$i] = $test2[$i];
   }
}
[/quote]
Ich bevorzuge diese Variante, weil sie erheblich schneller ist... map ist so
langsam, weil intern anonyme Arrays erzeugt werden. Aber wegen

Argument "t" isn't numeric in numeric eq (==) at

sollte '==' durch 'eq' ersetzt werden, da es auch nichtnumerische Inhalte
im Array gibt.
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 Arrays