在我的项目中,我必须经常重复这部分代码:
class SimplePhysicObject(Object):
def __init__(self):
super(Object, self).__init__('SimplePhysicObject')
但不是SimplePhysicObject
每次都有新字符串。有没有办法编写一些宏来使这项工作更容易?就像是:
DoTemplate(NewObject)
==>
class NewObject(Object):
def __init__(self):
super(Object, self).__init__('NewObject')
UPD对不起,Object
我自己的类之前在代码中声明过