2

我正在尝试验证和格式化类变量。该类扩展了一个类,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)

但后来我觉得我扭曲它太多了。那么,如何做到这一点呢?我的理解正确吗?任何帮助表示赞赏。

4

1 回答 1

2

不完全确定您的目标是什么,但您需要在传递 cls 的属性对象上 使用fget来获取_id

 print cls.format_id.fget(cls)
于 2016-05-08T21:53:14.270 回答