Thread Größe Array kompakt abfragen
(9 answers)
Opened by ingobulla at 2013-01-03 09:32
zusätzlicher hinweis:
my $num_hsps = $#ar + 1; sieht reichlich umständlich aus. einfacher: my $num_hsps = @ar; 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 |