http://qs321.pair.com?node_id=139064


in reply to (ar0n) Re: Accessing Constant Hashes
in thread Accessing Constant Hashes

If I could pick your brain, is the constant pragma implemented as a sort of psuedo-subroutine? Otherwise, why would calling the constant with an open and close paren force it to resolve to a hash?

++ar0n and thanks,
Jeremy

  • Comment on Re: (ar0n) Re: Accessing Constant Hashes

Replies are listed 'Best First'.
(Ovid -- constant internals)
by Ovid (Cardinal) on Jan 16, 2002 at 03:14 UTC

    As ar0n already replied, the constant pragma does create a subroutine. If you're curious, this is an inlined subroutine with a null prototype (one of the few places where a prototype is really useful). Looking in the constant module, the following code is where the constant is actually created:

    { no strict 'refs'; my $full_name = "${pkg}::$name"; $declared{$full_name}++; if (@_ == 1) { my $scalar = $_[0]; *$full_name = sub () { $scalar }; } elsif (@_) { my @list = @_; *$full_name = sub () { @list }; } else { *$full_name = sub () { }; } }

    What the null prototype does is allow your constant to behave like a Perl built-in:

    use constant FOO => 7; print FOO + 1;

    That prints 8, just like you would expect. Contrast that to this:

    sub FOO {7}; print FOO + 1'

    That will print 7. Why? Because Perl will interpret the +1 as being an argument to &FOO, which is silently discarded as it is not used. Yuck! With the null prototype, Perl knows that nothing coming after FOO can be an argument, so everything parses as you expect. It's also nice to note, from the docs, that as of Perl 5.004, Perl will replace all instances of your constant with the returned value, thus saving you the overhead of a subroutine call.

    Cheers,
    Ovid

    Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.

(ar0n) Re (3): Accessing Constant Hashes
by ar0n (Priest) on Jan 16, 2002 at 02:43 UTC

    It's exactly that, a subroutine.

    Calling it with a () -- or a + -- disambiguates it from %{CONST}, which is the equivalent of %CONST.

    [ ar0n -- want job (boston) ]

      ++ for disambiguates
         larryk                                          
      perl -le "s,,reverse killer,e,y,rifle,lycra,,print"