Thread Can't call method - Wertzuweisung schlägt fehl? (16 answers)
Opened by Karakash at 2011-03-24 09:51

Gast Karakash
 2011-03-24 13:48
#146866 #146866
Nach einigem Lesen nen Neuanfang:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!perl -w

use strict;

package initialize;
sub new {

my $class = shift;
my $name = shift;
bless \$name,$class;

}

sub IsFulfilled{
my $IsFulfilled = shift;
$$IsFulfilled ;

}

package Method;
use base qw(initialize);


sub checkIsFulfilled {



}

package main;

my $method = Method->new("First Method");
print $method->IsFulfilled("0");


Müsste IsFulfilled("0") nicht 0 zurückliefern anstatt "First Method"? ICh Rufe schließlich den Rückgabewert einer anderen Funktion auf.

View full thread Can't call method - Wertzuweisung schlägt fehl?