我正在尝试验证和格式化类变量。该类扩展了一个类,ABCMeta
我__metaclass__
还不能实例化我的子类。因此,当我在下面的代码中运行此代码时,它会打印属性对象而不是我想要的输出,我明白这是为什么。但那我该怎么做呢?
from abc import ABCMeta, abstractproperty
class RuleBase(object):
__metaclass__ = ABCMeta
id = None
id = abstractproperty(id)
@property
def format_id(self):
try:
_id = 'R%02d' % self.id
except TypeError:
raise TypeError("ID must be an integer")
return _id
@classmethod
def verbose(cls):
print cls.format_id
class Rule(RuleBase):
id = 1
Rule.verbose() # prints property object and not R01
在我的理论中,我认为这会奏效。
class FormattingABCMeta(ABCMeta):
def __new__(mcl, classname, bases, dictionary):
# Format here, remove format_id property from RuleBase,
# and use FormattingABCMeta as metaclass for RuleBase.
return super(C, mcl).__new__(mcl, classname, bases, dictionary)
但后来我觉得我扭曲它太多了。那么,如何做到这一点呢?我的理解正确吗?任何帮助表示赞赏。