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版)
类元编程
725
……把字段的
storage_name
追加到一个列表中……
……用于填充
cls_dict
(待构造类的命名空间)中的
__slots__
项。
最后,调用
super().__new__
metaclass/checkedlib.py
的最后一部分是
Checked
基类。这个库的用户通过子类化该基类增
强自己定义的类,例如
Movie
这一版
Checked
类,除了以下
3
处改动之外,其他代码与
initsub/checkedlib.py
中一样(参
见示例
24-5
和示例
24-6
)。
1.
添加一个空的
__slots__
属性,告诉
CheckedMeta.__new__
,这个类不需要特殊处理。
2.
删除
__init_subclass__
。相关工作现在交给
CheckedMeta.__new__
3.
删除
__setattr__
。为用户定义的类添加
__slots__
之后,无法设置未声明的属性了,
因此这个方法也就多余了。
示例
24-23
是最终版
Checked
类的完整代码。
示例
24-23
metaclass/checkedlib.py
Checked
基类
class Checked(metaclass=CheckedMeta):
__slots__ = () # 跳过CheckedMeta.__new__的处理
@classmethod
def _fields(cls) -> dict[str, type]:
return get_type_hints(cls)
def __init__(self, ...
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