Skip to Content
流畅的Python(第2版)
book

流畅的Python(第2版)

by Luciano Ramalho
April 2023
Intermediate to advanced
769 pages
25h 16m
Chinese
Posts & Telecom Press
Content preview from 流畅的Python(第2版)
64
3
3.4
 映射类型的标准
API
collections.abc
模块中的抽象基类
Mapping
MutableMapping
描述
dict
和类似类型的接
口,见图
3-1
这两个抽象基类的主要作用是确立映射对象的标准接口,并在需要广义上的映射对象时为
isinstance
提供测试标准。
>>> my_dict = {}
>>> isinstance(my_dict, abc.Mapping)
True
>>> isinstance(my_dict, abc.MutableMapping)
True
提示
使用
isinstance
测试是否满足抽象基类的接口要求,往往比检查一个函数的
参数是不是具体的
dict
类型要好,因为除了
dict
之外还有其他映射类型可
用。这个问题将在第
13
章详谈。
3-1
MutableMapping
及其在
collections.abc
中的超类的简化 UML 类图
如果想自定义映射类型,扩展
collections.UserDict
或通过组合模式包装
dict
更简单,那
就不要定义这些抽象基类的子类。
collections.UserDict
类和标准库中的所有具体映射类
都在实现中封装了基本的
dict
,而
dict
又建立在哈希表之上。因此,这些类有一个共同
的限制,即键必须
可哈希
(值不要求可哈希,只有键需要)。
3.4.1
节会讲
一讲相关概念,
帮你回顾一下。
3.4.1
 
可哈希
指什么
“可哈希”在
Python
术语表中有定义,摘录(有部分改动)如下:
如果一个对象的哈希码在整个生命周期内永不改变(依托 ...
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

Python高级编程(第2版)

Python高级编程(第2版)

Posts & Telecom Press, Michał Jaworski, Tarek Ziadé
Python贝叶斯分析(第2版)

Python贝叶斯分析(第2版)

Posts & Telecom Press, Osvaldo Martin
高效能PYTHON程式設計

高效能PYTHON程式設計

Micha Gorelick, Ian Ozsvald

Publisher Resources

ISBN: 9787115612366