Yes, that is one difference, but I find code that makes use of that difference to be a bit of a problem. I'd probably write HI_POST_PI()+5 if I noticed.
The difference that I'm talking about is that subroutines with a () prototype that also do nothing but return a value become compile-time constants. Perl can replace instances of calls to these with the constant returned at compile time, allowing lots of interesting tricks:
> Perl -MO=Deparse -w
use strict;
sub DEBUG() { 0 }
sub SymRef() { "My::Package::hash" }
sub PI() { 3.141592 }
if( DEBUG ) {
warn "Okay, we are debugging...\n";
do_lots_of_debugging_stuff();
}
$My::Package::hash{key}= "value";
print SymRef->{key},$/;
print PI()+5,$/;
__END__
sub DEBUG () {
0;
}
sub SymRef () {
'My::Package::hash';
}
sub PI () {
3.141592;
}
'???';
$My::Package::hash{'key'} = 'value';
print $My::Package::hash{'key'}, $/;
print 8.141592, $/;
- syntax OK
Without the () prototypes we'd get:
sub DEBUG {
0;
}
sub SymRef {
'My::Package::hash';
}
sub PI {
3.141592;
}
if (DEBUG ) {
warn "Okay, we are debugging...\n";
do_lots_of_debugging_stuff ;
}
$My::Package::hash{'key'} = 'value';
print SymRef()->{'key'}, $/;
print PI() + 5, $/;
- syntax OK
and, if we ran the code, we'd get:
Can't use string ("My::Package::hash") as a HASH ref
while "strict refs" in use
-
tye
(but my friends call me "Tye")
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|