请注意,在这种情况下,UNIVERSAL::isa 对我不起作用。我不想像以前那样走上继承树__PACKAGE__->isa('UNIVERSAL')
。
这是一个例子:
use 5.10.1;
use strict;
use warnings;
use utf8;
{
package Parent;
#How to do this more elegantly?
sub inherits_from_parent {
no strict 'refs';
return (__PACKAGE__ eq @{"$_[0]\::ISA"}[0]);
}
}
{
package Child;
use parent -norequire, qw(Parent);
}
package main;
say "Child directly inherits from Parent"
if Child->inherits_from_parent;
#not wat I want
say 'Child is universal:'.Child->isa('UNIVERSAL');
有没有更好的方法(不使用no strict 'refs';
)来检测类的直接父级?
谢谢。