Thread Anzahl Keys oberster Ordnung bei Hash Referenz (4 answers)
Opened by bianca at 2010-08-08 14:26

pq
 2010-08-08 15:17
#140467 #140467
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
die anzahl der keys eines hashes bekommst du ja mit $num = keys %hash. das weisst du ja auch schon und hast es auch schon benutzt.
die anzahl der keys einer hashref versuchst du ohne die funktion keys() herauszubekommen und wunderst dich darueber, was du zurueckbekommst, dabei ist da gar kein unterschied zu hashes. scalar %hash wuerde genauso "3/8" liefern.

warum benutzt du also bei einem hash die funktion keys() und laesst sie bei hashreferenzen weg? das ist fuer mich voellig unlogisch.

und deine andere frage wird mal wieder durch die doku beantwortet. perldoc perldata:
Code: (dl )
1
2
3
4
       If you evaluate a hash in scalar context, it returns false if the hash
is empty. If there are any key/value pairs, it returns true; more
precisely, the value returned is a string consisting of the number of
used buckets and the number of allocated buckets, separated by a slash.
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 Anzahl Keys oberster Ordnung bei Hash Referenz