Skip to Content
Perl语言入门(第8版)
book

Perl语言入门(第8版)

by Randal L. Schwartz, brian d foy, Tom Phoenix
October 2022
Beginner to intermediate
390 pages
7h 5m
Chinese
Southeast University Press
Content preview from Perl语言入门(第8版)
哈希
123
key
,
)
这样的新列表,达成键值互换。当结果存回
%inverse_hash
时,我们就能以
原本在
%any_hash
里的值进行检索,现在它已经成为
%inverse_hash
的键,而按它
找到的值则是
%any_hash
里的某个键。现在我们能按“值”(现在是键)来找“键”
(现在是值)了。
当然,思维缜密的读者可能已经猜到,这种技巧只能在原始哈希的值不重复的情况下
才能奏效,否则就会导致新哈希中有重复键,而哈希的键必须唯一。所以在不断赋值
的过程中,最后那个键的值替换了之前的赋值,成为最终的结果。
我们知道,键
-
值对在哈希松绑之后的顺序是无法预知的,所以也就无法预知最后哪
些键
-
值对会被覆盖。这个技巧最好是在确定原始哈希的值是唯一的情况下使用,比
如前面提到的
IP
地址和主机名相互检索的例子:
%ip_address = reverse %host_name;
现在,我们不但能按主机名查询
IP
地址,也能反过来按
IP
地址查询主机名。
胖箭头
使用列表对哈希赋值时往往难以区分键和值的成对关系。比如下面的代码中,我们要
仔细扫描并逐个默念:“键、值,键、值……”,才能搞清楚第
5
个元素
2.5
其实是
键,不是值:
%some_hash = ('foo', 35, 'bar', 12.4, 2.5, 'hello',
'wilma', 1.72e30, 'betty', "bye\n");
如果
Perl
能让我们将此类列表中的键与值成对组合,方便区别谁是谁,岂不更好? ...
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.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Go程序设计语言

Go程序设计语言

艾伦A. A.多诺万, 布莱恩W. 柯尼汉
Perl语言入门

Perl语言入门

Randal L. Schwartz, brian d foy, Tom Phoenix

Publisher Resources

ISBN: 9787576602036