in reply to Re: Avoiding circular references
in thread Avoiding circular references
But this does not even compile since $dbi in this_is_from_A is not declared.use strict; use warnings; use Devel::Cycle; package A; sub new { my ( $class, $href ) = @_; my $self = { dbi => $$href{dbi} }; $self->{helper} = Helper->new( helper_function => sub { my $dbi = $$href{dbi}; return $self->this_is_from_A(@_); } ); bless $self, $class; } sub do_something { my $self = shift; $self->{helper}->called_from_helper(); } sub this_is_from_A { my ($self, $arg) = @_; print "$arg\nthis_is_from_A using $dbi\n"; } package Helper; sub new { my $class = shift; my %def = ( a => "something"); my %arg = ( ref $_[0] eq "HASH" ? ( %def, %{ $_[0] } ) : ( %def, + @_ ) ); my $self = \%arg; bless $self, $class; } sub called_from_helper { my $self = shift; print "called_from_helper\n"; my $coderef = $self->{helper_function}->(); $coderef->("param from Helper"); } package main; my $a = A->new( { dbi => "some dbi object" } ); $a->do_something(); $a->do_something(); find_cycle($a);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Avoiding circular references
by tobyink (Canon) on Dec 06, 2019 at 14:48 UTC | |
by frazap (Monk) on Dec 06, 2019 at 15:16 UTC | |
by haj (Vicar) on Dec 06, 2019 at 19:27 UTC |