Thread Hash als Schlüssel eines Hashes (2 answers)
Opened by miwieg at 2006-09-03 12:41

miwieg
 2006-09-03 12:41
#69496 #69496
User since
2006-07-16
59 Artikel
BenutzerIn
[default_avatar]
Hallo!

Ich versuche gerade einen Hash zu erstellen, der als Schlüssel eine Hash-Referenz hat und als Wert ebenfalls eine Hash-Referenz hat:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;

my %keyHash = ();
$keyHash{"a"} = 345;
$keyHash{"b"} = 2;

my %valueHash = ();
$valueHash{"c"} = 3;
$valueHash{"d"} = 4;

my %hash = ();
my $keyHashAsRef = \%keyHash;

$hash{$keyHashAsRef} = \%valueHash;

foreach my $key(keys(%hash)){
my %kHash =%{$key};
print "TEST: " . $kHash{"a"} . "\n";
}


Leider bekomme ich die Fehlermeldung:
Can't use string ("HASH(0x861d660)") as a HASH ref while "strict refs" in use at /home/CE/miwieg/Hiwi/corte/miwieg/workspace/AnnotationStudy/test.pl line 17.

Was mache ich falsch?

Vielen Dank im Voraus!

View full thread Hash als Schlüssel eines Hashes