Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Why is a hash the default "object" in oo perl?

by tinita (Parson)
on Jul 18, 2004 at 01:51 UTC ( [id://375309]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub _attr {
      my $self = shift;
      my $name = shift;
    ...
      $self->{"_$name"} = shift;
    }
    sub name { shift->_attr(name => @_); }
    
  2. or download this
    package Parent;
    use attribute sub {
    ...
      # we have an ordinary hashref for the object
      return \$self->{"_$name"};
    }, [qw(city name)];
    
  3. or download this
    package Child;
    use base 'Parent';
    ...
      # object is arrayref, and the attributes are stored in element 0
      return \$self->[0]->{"_$name"};
    };
    
  4. or download this
    package attribute;
    use strict;
    use warnings;
    ...
      }
    }
    1;
    

Log In?
Username:
Password:

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

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

    No recent polls found