Thread Problem mit HASH ref (48 answers)
Opened by bianca at 2010-05-02 13:09

pq
 2010-05-02 16:11
#136646 #136646
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
2010-05-02T14:01:45 bianca
Und was ist hiermit?

Code (perl): (dl )
1
2
3
$hash{1}{2} = '1/2';
$hash{1}{2}{3} = '1/2/3';
print "existiert!" if defined $hash{1}{2}{3};

gib mal statt $hash{1}{2}{3} das hier aus:
${"1/2"}{3}

denn der zugriff auf $hash{1}{2}{3} ist dank no strict refs nichts anderes als der zugriff auf die symbolische referenz/hashref mit dem namen "1/2".

zeigt mal wieder, warum strict refs immer an sein sollte.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Problem mit HASH ref