Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

One option would be a simplistic factory that held a single "shared thing", and was responsible for creating the other objects, so that they could have a reference to the shared thing without having to explicitly pass the "shared thing" around.

Something like this:

#!/usr/bin/perl -w use strict; package SharedThing; sub new { my $that = shift; my $class = ref($that) || $that; return bless {"counter" => 0}, ref($that) || $that; } sub hello { my $this=shift; $this->{counter}++; printf "hello, count is [%d]\n",$this->{counter}; } package MyFactory; sub new { my $that = shift; my $class = ref($that) || $that; my $this = {}; bless $this, $class; $this->{sharedthing}=SharedThing->new(); return $this; } sub A {A->new(@_);} sub B {B->new(@_);} package A; sub new { my $that = shift; my $class = ref($that) || $that; my $this = {}; bless $this, $class; $this->{factory}=shift; # call the "hello" method of the "shared thing" so that # we can see that it's indeed a single instance $this->{factory}->{sharedthing}->hello(); return $this; } package B; our @ISA=qw(A); package main; my $factory=MyFactory->new(); my $a1=$factory->A(); my $a2=$factory->A(); my $b1=$factory->B(); my $b2=$factory->B();

All of the instances of A and B have a reference to the factory passed to them when they are instantiated, and so, they can get to $this->{factory}->{sharedthing}...the single shared object.


In reply to Re: Access to single object from multiple other objects by kschwab
in thread Access to single object from multiple other objects by elTriberium

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-04-23 14:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found