Thread Alle Arrays automatisch blessen ??? (15 answers)
Opened by KurtZ at 2007-12-13 16:27

pq
 2007-12-13 16:40
#103830 #103830
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
obwohl ich meine, dass man sowas in perl nicht unbedingt braucht:
CPAN:autobox
gerade erst auf dem letzten perl mongers treffen gelernt.

Code (perl): (dl )
1
2
3
4
5
6
7
$ perl -wle'
use autobox ARRAY => 'MyClass';
sub MyClass::length { return scalar @{$_[0]} }

my $aref = [1,2,3,6,7,8];
print $aref->length'
6


in perl 6 ist das glaube ich einfacher, weil da z.b. arrays eh schon objekte sind.
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: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Alle Arrays automatisch blessen ???