码迷,mamicode.com
首页 > 编程语言 > 详细

Python type class metaclass

时间:2016-10-02 00:23:00      阅读:143      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!