15

下面,base_idand_id是一个类变量,在所有子类之间共享。
有没有办法将它们分成每个类?

from itertools import count

class Parent(object):
    base_id = 0
    _id = count(0)

    def __init__(self):
        self.id = self.base_id + self._id.next()


class Child1(Parent):
    base_id = 100
    def __init__(self):
        Parent.__init__(self)
        print 'Child1:', self.id

class Child2(Parent):
    base_id = 200
    def __init__(self):
        Parent.__init__(self)
        print 'Child2:', self.id

c1 = Child1()                   # 100
c2 = Child2()                   # 201 <- want this to be 200
c1 = Child1()                   # 102 <- want this to be 101
c2 = Child2()                   # 203 <- want this to be 201
4

3 回答 3

8

如果你真的需要这样使用ID,使用参数:

class Parent(object):
    def __init__(self, id):
        self.id = id

class Child1(Parent):
    _id_counter = count(0)
    def __init__(self):
        Parent.__init__(self, 100 + self._id_counter.next())
        print 'Child1:', self.id

等等

这假设您不会直接构建 的实例Parent,但是对于您的示例代码来说这看起来是合理的。

于 2013-11-01T02:21:48.617 回答
4

正如您在问题中所说,_id由父类和所有子类共享。为每个儿童班级定义_id

from itertools import count

class Parent(object):
    base_id = 0
    _id = count(0)

    def __init__(self):
        self.id = self.base_id + self._id.next()


class Child1(Parent):
    base_id = 100
    _id = count(0) # <-------
    def __init__(self):
        Parent.__init__(self)
        print 'Child1:', self.id

class Child2(Parent):
    base_id = 200
    _id = count(0) # <-------
    def __init__(self):
        Parent.__init__(self)
        print 'Child2:', self.id

c1 = Child1()                   # 100
c2 = Child2()                   # 200
c1 = Child1()                   # 101
c2 = Child2()                   # 201

更新

使用元类:

class IdGenerator(type):
    def __new__(mcs, name, bases, attrs):
        attrs['_id'] = count(0)
        return type.__new__(mcs, name, bases, attrs)

class Parent(object):
    __metaclass__ = IdGenerator
    base_id = 0
    def __init__(self):
        self.id = self.base_id + next(self._id)
于 2013-11-01T02:14:04.747 回答
3

如果您不想像 falsetru 建议的那样违反 DRY 原则,则需要使用元类。我正在考虑写一些东西,但是关于 SO 上的元类已经有很长的描述了,所以检查一下。

简而言之,元类让您控制子类的创建。

基本上,您需要做的是,在创建 的子类时Parent,将_id成员添加到新创建的子类中。

于 2013-11-01T02:18:24.230 回答