Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
... I'm not sure why defined/undef &{'walk'} are allowed.

I'm sure others can cite a precise historical development of the usage of strictures, but for me it's a question of expedience.

The use of symbolic references is not discouraged because symbolic references are Evil, but because in certain cases experience has shown them to cause much trouble. These particular cases are foreclosed by  use strict 'refs';

Some cases are both useful and entirely safe. Testing for the definition of a subroutine with
    defined &{ 'subroutine_name' }
is obviously so.

An indispensable use is the very creation of a hard reference in the first place. It's hard to see how some statement like
    my $coderef = \&{ 'subroutine_name' };
is not going to be involved. Indeed, all the following work (and why should they not?)
    my $coderef = \&subroutine_name;
    my $coderef = \&{subroutine_name};
    my $coderef = \&{ 'subroutine_name' };
although  &{subroutine_name} produces an "Ambiguous use of..." warning.

The final case you mention is the potentially very useful  undef &{ 'subroutine_name' };   One can imagine doing this via a hard reference, e.g.
    my $coderef = \&{ 'subroutine_name' };
    undef $$coderef;
or some such roundabout implementation (that one doesn't actually work, BTW), but what would be the point? After all, it's the name of the subroutine that ultimately has to be undefined; just going to the address of the actual code and scribbling something over it (a return? a jump to an exception?) would not seem to gain you very much.

Anyway, my USD0.02.


In reply to Re: undef/defined &{$name} while "strict refs" by AnomalousMonk
in thread undef/defined &{$name} while "strict refs" by anazawa

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-23 14:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found