Thread hash Problem (11 answers)
Opened by Gustl at 2011-01-07 00:52

pq
 2011-01-07 16:15
#144192 #144192
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
es heisst autovivifikation. ich beobachte das schon seit einiger zeit, dass hier ständig autovivikation geschrieben wird. es ist lästig, aber da gehört noch ein "fi" rein.

Quote
Warum sollte die Autovivikation nicht auch bei Scalaren funktionieren?

habe ich gesagt, dass sie das nicht sollte?
habe ich das thema autovivify reingebracht?

autovivify funktioniert tadellos und schon in 5.8 auch mit skalaren:
Code: (dl )
1
2
3
4
5
6
7
perl -wle'use Data::Dumper;
my $hashref;
$hashref->{foo} = 23;
print Dumper $hashref;'
$VAR1 = {
'foo' => 23
};

wie ich schon schrieb, ist die neuerung des codes
my $hash->{foo} = 23;
dass während der deklaration die variable schon benutzt und dereferenziert wird.
deklaration und dereferenzierung. ist ein novum.

funktioniert interessanterweise nicht mit normalen hashes:
my $hash{foo} = 23;
syntax error at -e line 2, near "$hash{foo"
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 hash Problem