Thread Name /.*::.*/ used only once: possible typo at (18 answers)
Opened by Knuddlbaer at 2004-04-18 02:04

Gast Gast
 2004-04-18 18:40
#81650 #81650
Das ...

Quote
sub new {
  my $self = {
                  EINWERT => 'trallala',
                  EINANDERERWERT => 'anderewert'
                  };
   bless($self,'CLASS';
   return $self;
} #sub


würde ich besser nicht machen ...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
sub new {
   my $invoc = shift;
   my $class = ref $invoc || $invoc;
   my $self = {
                  EINWERT => 'trallala',
                  EINANDERERWERT => 'anderewert'
                  };
   bless($self, $class);
   return $self;
}


stellt dagegen sicher daß die Klasse unter Ihrem 'Namen' (und nicht unter 'CLASS' im Programm bekanntgemacht wird.

Sorry format_c ... :)\n\n

<!--EDIT|Dieter|1082301385-->

View full thread Name /.*::.*/ used only once: possible typo at