为什么我不能在下面的代码中使用子对象调用父对象的testmethod?
use strict;
use Data::Dumper;
my $a = C::Main->new('Email');
$a->testmethod();
package C::Main;
sub new {
my $class = shift;
my $type = shift;
$class .= "::" . $type;
my $fmgr = bless {}, $class;
$fmgr->init(@_);
return $fmgr;
}
sub init {
my $fmgr = shift;
$fmgr;
}
sub testmethod {
print "SSS";
}
package C::Main::Email;
use Net::FTP;
@C::Main::Email::ISA = qw( C::Main );
sub init {
my $fmgr = shift;
my $ftp = $fmgr->{ftp} = Net::FTP->new( $_[0] );
$fmgr;
}
package C::Main::FTP;
use strict;
use Net::FTP;
@C::Main::Email::FTP = qw( C::Main );
sub init {
my $fmgr = shift;
$fmgr;
}
字符串
2条答案
按热度按时间disbfnqx1#
这是因为对
@ISA
的赋值是在运行时完成的,因此在您尝试调用该方法之后。你可以通过用
BEGIN
包围它,将它移动到编译时来使它工作:字符串
或者你可以
型
这也是在编译时完成的。这两种变体都可以解决您的问题。
omqzjyyz2#
如果您正在用Perl编写新的OO代码,请使用Moose!
在使用过驼鹿之后回到“使用基地”就像回到了20世纪50年代。