我有一个模块 f,它扩大了子气球和香蕉。 我想用巴和巴兹来修改同样的oo。
现在我有这样的东西:
my $foo = new foo;
my $bar = new foo::bar( $foo );
$bar->doStuff();
$bar->printSelf();
my $baz = new foo::bar( $foo );
$baz->doOtherStuff();
$baz->printSelf();
在次模块中,施工者认为:
sub new {
my $class = shift;
my $self = shift;
--stuff--
bless $self, $class;
return $self;
}
请不要太困难。 难道我可以这样做,而不通过 $?
感谢阅读: