Inspired by the request over at
hashes, arrays, and references... oh my (the gist is
creating objects from XML), i wanted to
create a "real" object - one that has accessor methods
instead of relying on the client to access
$self's reference
directly. I also wanted to be able to specify those methods
easily, and more importantly, be able to pass a hash to
the constructor and have
it assign all of the
attributes for me. Enter
Class::MethodMaker:
#!/usr/bin/perl -l
package Beatle;
use Class::MethodMaker
new_hash_init => 'new',
get_set => [qw(name instruments)],
;
package main;
use strict;
use warnings;
use XML::Simple;
my $xml = XMLin(\*DATA, KeyAttr => []);
for (@{$xml->{beatle}}) {
my $beatle = Beatle->new(%$_);
print $beatle->name, ":";
print "\t$_" for @{$beatle->instruments};
}
__DATA__
<beatles>
<beatle name="Paul">
<instruments>Voice</instruments>
<instruments>Bass</instruments>
<instruments>Guitar</instruments>
<instruments>Piano</instruments>
</beatle>
<beatle name="John">
<instruments>Voice</instruments>
<instruments>Guitar</instruments>
<instruments>Rhodes</instruments>
</beatle>
<beatle name="George">
<instruments>Voice</instruments>
<instruments>Guitar</instruments>
<instruments>Sitar</instruments>
</beatle>
<beatle name="Ringo">
<instruments>Voice</instruments>
<instruments>Drums</instruments>
<instruments>Percussion</instruments>
</beatle>
</beatles>
Apologies to any Pete Best fans out there. ;)
jeffa
L-LL-L--L-LL-L--L-LL-L--
-R--R-RR-R--R-RR-R--R-RR
B--B--B--B--B--B--B--B--
H---H---H---H---H---H---
(the triplet paradiddle with high-hat)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.