One of the issues that Object-Oriented programming has blessed us with is data encapsulation. For the most part it's a boon. Unfortunately, If you look at some of the standard code out there that gets used in Objects in Perl, people have the ability to assign things to objects that have no business being there.

When i wrote this originally it was to make a fine distinction between calling an Object's accessor method and calling the item explicitly. What i did was set up the object so that all the items (in a hash) had a leading underscore; no big deal. My accessor methods have no leading underscore, thus the distinction.

But rather than force people to use a leading underscore, i wanted to make the underscore optional. So i came up with the following (both versions).

Later i realized this is a good practice (IMHO) just so that people don't add things to your object hil-nil. i've been using it ever since...

jynx


ps Please tell me of any errors or bugs or improvements you can think of for the code.

pps Sorry if there's bad formatting, there's no preview button in the Snippets Section!!!

# Both have the following pragmas in place: #!/usr/bin/perl -w use strict; use Carp; #================================================= #Version 1: no extra variable (slightly confusing) #================================================= # Get the keys of @_ foreach (keys %{ +{ @_ } }) { # Check to see if a key has a leading underscore ($self->{"_$_"} = ${ +{@_} }{$_}),next if (exists $self->{"_$_"} +); # Check to see if a key has no leading underscore (exists $self->{$_}) ? $self->{$_} = ${ +{@_} }{$_} : # Warn the user if the key isn't valid carp "The entry $_ is not a valid key.\n"; } #================================ # Version 2: a spare %tmp to help #================================ # Get the keys of @_ my %tmp = ( @_ ); foreach (keys %tmp) { # Check to see if a key has a leading underscore ($self->{"_$_"} = $tmp{$_}),next if exists $self->{"_$_"}; # Check to see if a key has no leading underscore (exists $self->{$_}) ? $self->{$_} = $tmp{$_} : # Warn the user if the key isn't valid carp "The entry $_ is not a valid key.\n"; }

In reply to Stripping bad entries from a constructor by jynx

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.