Thread Anzahl möglicher Dimensionen: Bei Has bzw Arrays (11 answers)
Opened by Gast at 2007-06-25 00:03

bloonix
 2007-06-25 21:09
#77776 #77776
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
Code: (dl )
1
2
3
4
5
6
7
8
my %hash = (foo => {});
my $ref  = \%hash;

for (0..100000) {
  print $_, " ";
  $ref = $ref->{foo};
  $ref->{foo} = {};
}


... 99467 99468 99469 99470 99471 99472 Speicherzugriffsfehler

Bei knapp 100000 ist bei mir Schluss und das nicht, weil ich zuwenig
Speicher habe.\n\n

<!--EDIT|opi|1182791396-->
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Anzahl möglicher Dimensionen: Bei Has bzw Arrays