在python cookbook的Chapter 20的 Introduction中,有关于metaclass(元类)的简单介绍,它自动生成了以一个下划线带头的get方法。
我改进了一下,使其也具有set方法,当然就是增加了几行代码。
IDLE 2.6.5
>>> class M(type):
def __new__(cls, name, bases, classdict):
for attr in classdict.get('__slots__', ( )):
if attr.startswith('_'):
def getter(self, attr=attr):
return getattr(self, attr)
def setter(self, val=0, attr=attr):
return setattr(self, attr, val)
classdict['get' + attr[1:]] = getter
classdict['set' + attr[1:]] = setter
return type.__new__(cls, name, bases, classdict)
>>> class Point(object):
__metaclass__ = M
__slots__ = ['_x', '_y' ,'_z']
>>> p=Point()
>>> dir(p)
['__class__', '__delattr__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__metaclass__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__slots__', '__str__', '__subclasshook__', '_x', '_y', '_z', 'getx', 'gety', 'getz', 'setx', 'sety', 'setz']
>>> p.setx(10)
>>> p.getx()
10
>>>
可以看到,Point 的 __slot__ 中放入x,y,z三个名字,然后就自动生成类似getx,setx的方法。
metaclass 真是强大啊。
阅读全文 类别:Python 查看评论文章来源:
http://hi.baidu.com/mirguest/blog/item/a33c7d5314d7ca0b377abe68.html