首页 > 编程语言 > 详细

Python type class metaclass

时间:2016-10-02 00:22:01      阅读:222      评论:0      收藏:0      [点我收藏+]

‘type‘ 是 python built-in metaclass

其他继承自 ‘type’的class都可以是 Metaclass

子类可以继承父类的metaclass

然而 __metaclass__属性不能继承

__metaclass__可以定义成任何返回instance of ‘type‘ callable

 

 

__new__(cls, ...)  : create instance of cls

__init__(self, ...) :instance already created and set properties to this instance

 

Python type class metaclass

原文:http://www.cnblogs.com/lynnge/p/5926513.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!