Thread Probleme bei Vererbung
(17 answers)
Opened by tsy at 2008-03-17 18:11
Wenn man den Code vollständig macht, funktioniert es Problemlos:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 #!/usr/bin/perl -w use strict; package Person; sub new { my $proto = shift; my $self = bless {}, ref $proto || $proto; print "Parameter: @_\n"; return $self; } package Benutzer; use base 'Person'; sub new { my $class = shift; my ($id, $nachname, $vorname) = @_; $class->SUPER::new($id, $nachname, $vorname); } package main; new Benutzer(1, 'hinten', 'vorne' ); |