Thread Funktionsaufruf - aber nicht alle Parameter fortlaufend übergeben
(6 answers)
Opened by jan99 at 2014-02-05 11:23
Die einfachste Möglichkeit ist erstmal $css als undef zu übergeben.
//edit: wenn das nicht praktikabel ist, z.B. weil zu viele optionale Params, dann nimmt man normalerweise einen Hash. Code (perl): (dl
)
1 2 3 4 5 6 7 foo($pflicht1, $pflicht2, { opt1 => 123, opt3 => 456}); Sub foo { my $pflicht1 = shift; my $pflicht2 = shift; my $opt = shift; # hashref } Last edited: 2014-02-05 12:06:35 +0100 (CET) 1 + 1 = 10
|