Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Object methods from hashy structures

by j1n3l0 (Friar)
on Dec 24, 2007 at 00:58 UTC ( [id://658821]=note: print w/replies, xml ) Need Help??


in reply to Object methods from hashy structures

Also consider the Moose like so:

package Foo; use Moose; # define your attributes here ... my %ATTRIBUTES; @ATTRIBUTES{ qw( name age sex job) } = (); # create the accessors here ... for my $attribute ( keys %ATTRIBUTES ) { has $attribute => ( is => 'rw' ); } 1; package main; # assign values to your attributes ... my $foo = Foo->new( name => shift, age => shift, sex => shift, job => shift, ); # access the attributes here ... print join ( q{ }, 'Hi, I am ', $foo->age, 'year old', $foo->name, 'and i work as a', $foo->job, ) . "\n";

Then execute like so:

perl t.pl nelo 27 male bioinformatician

And you get the following:

Hi, I am 27 year old nelo and i work as a bioinformatician


Smoothie, smoothie, hundre prosent naturlig!

Replies are listed 'Best First'.
Re^2: Object methods from hashy structures
by stvn (Monsignor) on Dec 24, 2007 at 22:22 UTC

    Moose actually has a built in feature/shortcut for this.

    package Foo; use Moose; has [qw( name age sex job )] => ( is => 'rw' );
    This will create 4 attributes (name, age, sex, job) in your Foo class, all of which have the same options (is => 'rw').

    -stvn

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-18 10:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found