PYTHON收藏python知识Python 运维

Python 类、元类小实验

2016-11-20  本文已影响396人  treelake

理解python的类实例化
class type(name, bases, dict)官方定义
object.__new__(cls[, ...])官方定义
Customizing class creation 定制类创建 官方文档
Built-in Types 内建类型 官方文档

准备知识

a = 1
type(a)
# int
type(int)
# type
int.__mro__
# (int, object)

实验


理解

上一篇 下一篇

猜你喜欢

热点阅读