Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The reason why typeglobs can be used as a reference in Perl

Sorry for may be not clear question, but I'm asking it, because I don't like to read something without understanding what I'm reading about.

Here is the snippet from the "Programming Perl":

Since the way in which you dereference something always indicates what sort of referent you’re looking for, a typeglob can be used the same way a reference can, despite the fact that a typeglob contains multiple referents of various types. So ${*main::foo} and ${\$main::foo} both access the same scalar variable, although the latter is more efficient.

For me this seems wrong, and that it would be right if it were this way:

you can use a typeglob instead of the scalar variable because reference is always a scalar and compiler knows what you need.

From the book's text, the reader can assume that a reference can be something other than a scalar variable (i.e. a scalar entry in the symbol table). Once I saw a warning: use of array as a reference is deprecated, so it appears to me that long ago this paragraph in the "Programming Perl" was meaningful, because references could be not just scalars, but in the new 4th edition it simply was not changed to comply with modern Perl.

I checked the errata page for this book but found nothing.

Is my assumption correct? If not, would be somebody so pleasant to explain, where I'm wrong.

Thank you in advance.

like image 277
Dmitry Koroliov Avatar asked Aug 24 '12 09:08

Dmitry Koroliov


People also ask

What is Typeglob Perl?

Perl uses an special type called a typeglob to hold an entire symbol table entry. (The symbol table entry *foo contains the values of $foo, @foo, %foo, &foo, and several interpretations of plain old foo.) The type prefix of a typeglob is a * because it represents all types.

How do I create a hash reference in Perl?

Similar to the array, Perl hash can also be referenced by placing the '\' character in front of the hash. The general form of referencing a hash is shown below. %author = ( 'name' => "Harsha", 'designation' => "Manager" ); $hash_ref = \%author; This can be de-referenced to access the values as shown below.

What are prefix Dereferences in Perl explain with examples?

Dereferencing in Perl returns the value from a reference point to the location. To dereference a reference simply use $, @ or % as a prefix of the reference variable depending on whether the reference is pointing to a scalar, array, or hash. Following is the example to explain the concept −


2 Answers

No. What it's saying is that unlike a normal reference, a typeglob contains multiple types of things at the same time. But the way in which you dereference it indicates which type of thing you want:

use strict;
use warnings;
use 5.010;

our $foo = 'scalar';
our @foo = qw(array of strings);
our %foo = (key => 'value');

say ${ *foo };                  # prints "scalar"
say ${ *foo }[0];               # prints "array"
say ${ *foo }{key};             # prints "value"

You don't need a special "typeglob dereferencing syntax" because the normal dereferencing syntax already indicates which slot of the typeglob you want to dereference.

Note that this doesn't work with my variables, because lexical variables aren't associated with typeglobs.

Sidenote: The "array as a reference" warning is not related to this. It refers to this syntax: @array->[0] (meaning the same as $array[0]). That was never intended to be valid syntax; it slipped into the Perl 5 parser by accident and was deprecated once Larry noticed.

like image 188
cjm Avatar answered Nov 04 '22 18:11

cjm


although this doesn't exactly answer your question, I can try to tell you what I experience with typeglobs

they are more dynamic than scalars and references, because using a typeglob is sort of a way telling the compiler "here is a hint, guess yourself what you have to do with it"

a reference always has a strict type and target. a typeglob may just contain a string, indicating that it's supposed to point to some variable(name) or filehandle (like STDOUT) or some other value, that's accessible through this string

there are perlish hacks to accomplish some strange things, that are only possible with typeglobs, so I think even in mordern perl they are important

like image 26
Hachi Avatar answered Nov 04 '22 18:11

Hachi