Typeglobs

  1. Typeglobs assignment aliases identifiers. In the following example, all identifiers named a (scalar, array, hash, subroutine, filehandle, format) are also available as b:

    *a = *b ;     # Alias
    $b = 10;      # Same as modifying $a
    b();          # Same as calling a()
  2. Selective aliasing:

    *a = \$b ;    # Only $a aliased to $b
  3. Constants:

    *a = \10;     # Alias a typeglob to a reference to a constant
    $a = 20;      # Run-time error - "Attempt to modify read-only variable"

Get Advanced Perl Programming now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.