Thread Array of Arrays (Matrix vs. Tabelle) (4 answers)
Opened by kimmy at 2011-12-22 15:56

Sven_123
 2011-12-23 12:56
#155047 #155047
User since
2010-06-01
120 Artikel
BenutzerIn
[default_avatar]
Naja, wenn du in Zeile 6
Code (perl): (dl )
if ($dis) {push @{$hash{$bez1}}, $dis}

schreibst, bleibt der Array leer, wird allerdings auch nicht initialisiert. Das führt mit "use warnings" in Zeile 13 dann zu ner Warnung (vermute ich). Sofern du %hash nicht veränderst, wär da das einfachste wohl:
Code (perl): (dl )
push @data_array, ($hash{$key} || []);

Die abwechselnde Dereferenzieung und Referenzierung willst du vermutlich eh nicht - aber bau es doch lieber ganz um...

View full thread Array of Arrays (Matrix vs. Tabelle)