Yes, it does. If you're within an object and you're doing 2- and 3-deep lookups into $self, you're programming horribly. It's mean, but true.

Even within an object, you should be using your accessors. In addition, using objects would allow you to abstract out some of the parts of this ADT. For example, dimmesdale has this concept of a "measurement". That should be abstracted out to some other object. Now, you deal with anything in that measurement through that API. This actually solves his initial problem.

Plus, I suspect that he's working with test subject data, from the little he posted. There are usually hundreds of measurements for a given test subject. So, he has a List of Measurements within a TestSubject, all with appropriate accessors. The DB-access methods are now a piece of cake. The display methods are a piece of cake.

I'm not always "OO rulez" or whatever. But, if the shoe fits ...

------
We are the carpenters and bricklayers of the Information Age.

Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.


In reply to Re: Re: Help with ADT by dragonchild
in thread Help with ADT by dimmesdale

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.