Mobious Monks,

Simple style question.

I have a count variable that is to be set depending on a condition:

if ($some_variable eq 'x') { $count = 14; } else { $count = 9; } for $i (0 .. $count) { do some stuff }
Wherein '$some_variable' can have the values 'x' and 'y' only.
Coding the actual values right there in the conditonal effectively buries that way down in the bowels of a long program, but uses the minimum lines of code and is highly readbable once you find that snippet.

Setting two value holders at the top of the script make for easier maintenance when the values need to be changed some day:

#constant declaration area at top of script $value_1 = 14; $value_2 = 9; ...many lines of code later... if ($some_variable eq 'x') { $count = $value_1; } else { $count = $value_2; } for $i (0 .. $count) { do some stuff }
but it creates double referencing and extra lines of code.

A third way would be to declare a hash:

#constant declaration area at top of script $count{'x'} = 14; $count{'y'} = 9; ...many lines of code later... for $i (0 .. $count{$some_variable}) { do some stuff }
Any feelings on which is preferable from a coding style and/or efficiency point of view?

Forget that fear of gravity,
Get a little savagery in your life.


In reply to Style: buried variables or double referencing? by punch_card_don

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.