我正在尝试删除导入的符号,以便它们作为对象中的方法不可用,但似乎没有用,可能我不理解否,或者还有另一种方法.
use 5.014; use warnings; use Test::More; # still has carp after no carp package Test0 { use Carp qw( carp ); sub new { my $class = shift; my $self = {}; carp 'good'; bless $self,$class; return $self; } no Carp; } my $t0 = Test0->new; ok( ! $t0->can('carp'),'can not carp'); # below passes correctly package Test1 { use Carp qw( carp ); use namespace::autoclean; sub new { my $class = shift; my $self = {}; carp 'good'; bless $self,$class; return $self; } } my $t1 = Test1->new; ok( ! $t1->can('carp'),'can not carp'); done_testing;
不幸的是我不能使用namespace::autoclean,因为我被限制在仅仅是核心perl的一部分的模块(是的愚蠢但c’est la vie).
不只是重写namespace :: autoclean有没有办法做到这一点?
解决方法
我相信namespace :: autoclean删除了glob:
delete $Test0::{carp};
没有硬编码包:
my $pkg = do { no strict 'refs'; \%{ __PACKAGE__."::" } }; delete $pkg->{carp};
如果你坚持严格要求,你可以严格愚弄(但不是更安全或更不安全):
my $pkg = \%::; $pkg = $pkg->{ $_ . '::' } for split /::/,__PACKAGE__; delete $pkg->{carp};