Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Avoiding circular references

by haj (Vicar)
on Dec 06, 2019 at 13:29 UTC ( [id://11109748]=note: print w/replies, xml ) Need Help??


in reply to Avoiding circular references

Well, the question in the title of the article you quoted was based on a misunderstanding: Objects are references (this has been pointed out by dseroh in the other thread as well). There is no performance penalty if you store an object as an attribute of another object.

In your example, you are creating a closure over $self and store this sub in a Helper object which you keep as an attribute: This results in a cyclic reference. But the cycle is not on the subroutine reference, it is on $self. So by weakening the sub reference, which only has this one reference in the helper object, you kill it and the second call fails.

Your alternate solution does not create a circular reference because you are using $_[0] instead of $self: $_[0] is the class name 'A', and not an object.

So if you don't actually need the object in the closure, as the alternate solution suggests, then just don't pass it into the closure.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11109748]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 20:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found