Thread pointer auf array und hash (Inline::C) (13 answers)
Opened by Graf Herschel at 2010-11-26 15:05

renee
 2010-11-26 16:03
#143074 #143074
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du solltest bei der Subroutinendeklaration auch die "()" weglassen. Prototypen sind in Perl ein eigenes Thema...

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
sub function {
    my ($arref,$value) = @_;

    push @{$arref}, $value;
}

my @array;
function( \@array, 'neuer wert' );

print $_,"\n" for @array;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread pointer auf array und hash (Inline::C)