Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Why does Perl have typeglobs?

by hardburn (Abbot)
on Jul 08, 2014 at 19:33 UTC ( [id://1092778]=note: print w/replies, xml ) Need Help??


in reply to Why does Perl have typeglobs?

A long time ago, it was a way to carry around filehandles. Perl 5.8 (I think) allowed lexicals to hold filehandles, so this use died out.

Most useful thing I've found is to make a list of simple accessors in a class:

{ my @ACCESSORS = qw{ foo bar baz }; for my $slot (@ACCESSORS) { no strict 'refs'; *$slot = sub { my ($self) = @_; $self->{$slot}; }; } }

But even this has tended to go away with meta-object systems like Moose (which do similar things under the hood).


"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1092778]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-18 11:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found