It makes a bit more difference if you factor in compile time (more tokens to parse, and no optimization of multiplying constants, don't ask me which makes more of a difference):
use strict; use warnings; use Benchmark; my $x = 5; timethese(-5, { EXPANDED=>sub { eval '$x * 24 * 60 * 60' }, NOT_EXP =>sub { eval '$x * 86400' }, }); Benchmark: running EXPANDED, NOT_EXP, each for at least 5 CPU seconds. +.. EXPANDED: 6 wallclock secs ( 5.31 usr + 0.00 sys = 5.31 CPU) @ 56 +77.40/s (n =30147) NOT_EXP: 6 wallclock secs ( 5.26 usr + 0.00 sys = 5.26 CPU) @ 67 +49.24/s (n =35501)
But of course I'd leave in the explicit multiplications anyway for reasons already mentioned. If I really needed to eval that, I might put something like $seconds_per_day = 24 * 60 * 60; outside of the eval, then use the variable inside.

In reply to Re: Re: Re: Re: Add A Number of Days to Today's Date by runrig
in thread Add A Number of Days to Today's Date by rline

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.