Thread Name /.*::.*/ used only once: possible typo at
(18 answers)
Opened by Knuddlbaer at 2004-04-18 02:04
Kannst ein Objekt erstellen, und die Werte als Eigenschaften des Objektes mitgeben.
sub new { my $self = { EINWERT => 'trallala', EINANDERERWERT => 'anderewert' }; bless($self,'CLASS'); return $self; } #sub Dann my $obj = CLASS::modul->new(); print $obj->{EINWERT}; Siehe auch perldoc perlboot perldoc perltoot perldoc perltooc perldoc perlbot Gruß Alex |