Thread pointer auf array und hash (Inline::C)
(13 answers)
Opened by Graf Herschel at 2010-11-26 15:05
das sieht sehr merkwürdig aus, was du da machst.
hast du denn die entsprechende doku gelesen? http://p3rl.org/perlref http://p3rl.org/perlreftut http://p3rl.org/perldsc Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 my $array = []; function($array); # alternativ my @array; function(\@array); sub function { my ($array) = @_; push @$array, 23; } 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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |