Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^4: The Accessor Heresy

by Roy Johnson (Monsignor)
on Nov 28, 2005 at 18:36 UTC ( [id://512316]=note: print w/replies, xml ) Need Help??


in reply to Re^3: The Accessor Heresy
in thread The Accessor Heresy

getters and setters very often don't come in pairs
To help in applying what you've read here to situations that aren't specifically covered, think about whether something is conceptually a property. If you've got a bunch of operate_on_Doohickey type methods, regardless of whether any of them happen to be get_ or set_, you probably have in your model the concept of a Doohickey property.

If you've got only one operate_on_Doohickey method, there's still probably a Doohickey object in your model, but it's not interesting enough to implement as an object. Of course, you might expand your functionality in the future, in which case you might end up wishing you had coded it up as an object.

I definitely wouldn't code up an object for a read-only property. If Area wasn't settable, then my Circle object might have an Area method that simply returned the area of the Circle. Note that it wouldn't be getArea. But if it had numerous possible output formats, I'd have it create a Measurement object (not a sub-object, but one that exists outside of the Circle class hierarchy, because it's not specific to the domain of Circles) so I could get Area->inSqFeet or whatever.

The design decisions are yours, of course.


Caution: Contents may have been coded under pressure.

Replies are listed 'Best First'.
Re^5: The Accessor Heresy
by gjb (Vicar) on Nov 28, 2005 at 19:03 UTC

    Hm, I'm a bit suspicious about the manipulating the "inner" Doohickey object, but it's hard to tell without the specifics. If it were my code I'd start analyzing dependencies and refactoring, but then again, it's hard to tell without code.

    To me, it smells of an object model which is not quite aligned with what it is trying to model.

    As ever, just my 2 cents, -gjb-

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (5)
As of 2024-04-16 12:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found