Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hey all,
It has been a while since I have posted, because well I have had nothing to say. This post is a plea for an RTFM Direction, or a 'Yeah, that sucks, try this'. I have written quite a bit of Code where I will use multiple instances of the same Object. The funny thing is that it seems the all of the instances have the same instance data as the last Object that was instatiated. Here is an example.
use strict; { package Interesting; my $_name = ''; sub new { my $proto = shift(); my $class = ref($proto) || $proto; my $this = bless({},$class); return $this; } sub myNameIs{ my ($this,$name) = @_; die("Don't tell me that I don't have a name.") unless(defined($nam +e)); $_name = $name; } sub whoAmI{ return($_name); } } my $one = new Interesting(); $one->myNameIs('What'); my $two = new Interesting(); $two->myNameIs('Who'); my $three = new Interesting(); $three->myNameIs('tukatukatuka SlimShady'); print "My name is : " . $one->whoAmI() . "\n"; print "My name is : " . $two->whoAmI() . "\n"; print "My name is : " . $three->whoAmI() . "\n";
Please tell me what I am doing wrong. Thank you, Kristofer

In reply to OO doesn't seem to play nice with multiple instances by krisahoch

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 studying the Monastery: (6)
As of 2024-03-28 15:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found