Thread Übergabe einer sort-Funktion an eine Methode: Problem beim Zugriff auf $a und $b (23 answers)
Opened by docsnyder at 2006-01-19 11:16

esskar
 2006-01-19 12:20
#62052 #62052
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
teste das mal
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;
use warnings;

my @array = 1..100;

sub backward { $b <=> $a }

mysort(\&backward);

sub mysort {
my $func = shift;

print join("\n", sort $func @array);
}

View full thread Übergabe einer sort-Funktion an eine Methode: Problem beim Zugriff auf $a und $b