Perl中的弱引用

前端之家收集整理的这篇文章主要介绍了Perl中的弱引用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在perl中创建对象的弱引用,所以当对象超出范围时,引用计数被释放?
我已经尝试使用DESTROY子来打破循环引用.

sub DESTROY{  
my $p = shift;  
delete $p->{__tree__};  
delete $p->{tokenizers};  
delete $p->{toke};  
}

请帮忙.

解决方法

你不能“调用”破坏 – 这里的问题是perl在引用计数上工作 – 对事物的每个引用都被计算,并且只有当引用计数降到零时才会被释放/销毁/垃圾收集.

DESTROY是一种特殊方法,在发生这种情况时,在对象内调用以执行清理任务.它不会删除对象,它只是让它在它死亡时做一些最后的整理.

看看Scalar::Util模块.它包括弱化方法,它完全符合您的要求.

The lvalue $ref will be turned into a weak reference. This means that it will not hold a reference count on the object it references. Also when the reference count on that object reaches zero,the reference will be set to undef. This function mutates the lvalue passed as its argument and returns no value.

This is useful for keeping copies of references,but you don’t want to prevent the object being DESTROY-ed at its usual time.

猜你在找的Perl相关文章