Skip to Main Content
Programming Perl, 3rd Edition
book

Programming Perl, 3rd Edition

by Larry Wall, Tom Christiansen, Jon Orwant
July 2000
Intermediate to advanced content levelIntermediate to advanced
1104 pages
35h 1m
English
O'Reilly Media, Inc.
Content preview from Programming Perl, 3rd Edition

Variables

Not surprisingly, there are three variable types corresponding to the three abstract data types we mentioned earlier. Each of these is prefixed by what we call a funny character.[5] Scalar variables are always named with an initial $, even when referring to a scalar that is part of an array or hash. It works a bit like the English word "the". Thus, we have:

ConstructMeaning
$daysSimple scalar value $days
$days[28]29th element of array @days
$days{'Feb'}"Feb" value from hash %days

Note that we can use the same name for $days, @days, and %days without Perl getting confused.

There are other, fancier scalar terms, useful in specialized situations that we won't go into yet. They look like this:

ConstructMeaning
${days}Same as $days but unambiguous before alphanumerics
$Dog::daysDifferent $days variable, in the Dog package
$#daysLast index of array @days
$days->[28]29th element of array pointed to by reference $days
$days[0][2]Multidimensional array
$days{2000}{'Feb'}Multidimensional hash
$days{2000,'Feb'}Multidimensional hash emulation

Entire arrays (or slices of arrays and hashes) are named with the funny character @, which works much like the words "these" or "those":

ConstructMeaning
@daysArray containing ($days[0], $days[1],… $days[n])
@days[3, 4, 5]Array slice containing ($days[3], $days[4], $days[5])
@days[3..5]Array slice containing ($days[3], $days[4], $days[5])
@days{'Jan','Feb'}Hash slice containing ($days{'Jan'},$days{'Feb'})

Entire hashes are named by %:

ConstructMeaning
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Mastering Perl, 2nd Edition

Mastering Perl, 2nd Edition

brian d foy
Programming the Perl DBI

Programming the Perl DBI

Tim Bunce, Alligator Descartes
Perl in a Nutshell, 2nd Edition

Perl in a Nutshell, 2nd Edition

Nathan Patwardhan, Ellen Siever, Stephen Spainhour

Publisher Resources

ISBN: 0596000278Supplemental ContentErrata