Thread Problem mit FileHandle
(24 answers)
Opened by rosti at 2011-04-05 22:27 2011-04-06T07:56:39 rosti Ok, obwohl mir gleich ein paar äquivalente Lösungen einfallen. Auf "tie" wäre ich zuletzt gekommen. :-) 2011-04-06T07:56:39 rosti Also mir wäre so eine Lösung eingefallen: Code (perl): (dl
)
1 2 3 4 5 6 my $counter=Conter->new(file=>$file,keys=>[qw(foo bar bam)]); $counter->up('foo'); # oder mit dynamischer Methoden-Deklaration: $counter->foo_up(); # oder mit overload: $counter+="foo"; das ist auch nicht so viel anders als Code (perl): (dl
)
1 2 tie (my %counter, 'Tie::Counter', file=>$file, keys=>[qw(foo bar bam)]); $counter{foo}++; |