Thread Problem mit HASH ref
(48 answers)
Opened by bianca at 2010-05-02 13:09
[quote="pq@2010-05-09T14:32:18"]dispatch-tabelle kam hier schon häufig vor, aber ich wiederhole gern nochmal:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 my %dispatch = ( blubb => \&sub1, foo => \&sub2, bar => \&sub3, ); sub sub1 { ... } ... my $sub = "foo"; $dispatch{ $sub }->($parameter); # ruft sub2($parameter) auf So mach ich es. Danke 10 print "Hallo"
20 goto 10 |