Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^5: Can I please have *simple* modules?

by Perl Mouse (Chaplain)
on Nov 23, 2005 at 21:56 UTC ( [id://511267]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Can I please have *simple* modules?
in thread Can I please have *simple* modules?

That means more code I or a maintenance programmer has to wade through to understand what's going on
That's exactly why I like to spell out the accessors in my code. No other module to understand to know what the code is doing.
Additionally, your method assumes a particular implementation (in this case, a blessed hashref)
Uhm, no. Look again.
Not only does it make it easy for another programmer to violate encapsulation (even if it's only by accident), it also means that it's more work to switch your object to a blessed array ref or inside out objects.
Actually, the accessors are for inside-out objects, and if you want to switch to blessed array refs, you can leave the accessors I wrote them just they way they are. They will keep working.
use Class::BuildMethods qw/foo bar baz/;

With that, I get three accessors/mutators without code duplication or reliance on the internals.

And a dependency on another module, who's internals are more complicated than one-liner accessors.

I'd love to see the code of Class::BuildMethods that works independently of how the class using it is implemented, without denying the using class direct access to its data.

Perl --((8:>*

Replies are listed 'Best First'.
Re^6: Can I please have *simple* modules?
by Ovid (Cardinal) on Nov 23, 2005 at 22:19 UTC

    You're right that I misread your code. I still think my points stand but feel free to disagree. You can check the CPAN for my code soon (it has just been uploaded).

    Cheers,
    Ovid

    New address of my CGI Course.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-03-19 03:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found