什么是实现多个构造函数的干净“pythonic”方法?

2022-09-05 01:16:58

我找不到一个明确的答案。据我所知,你不能在Python类中拥有多个函数。那么我该如何解决这个问题呢?__init__

假设我有一个用该属性调用的类。我怎么能有两种方法来创建奶酪对象...Cheesenumber_of_holes

  1. 一个需要许多孔,如下所示:.parmesan = Cheese(num_holes = 15)
  2. 一个不带参数而只是随机化属性的参数:.number_of_holesgouda = Cheese()

我只能想到一种方法来做到这一点,但这似乎很笨拙:

class Cheese():
    def __init__(self, num_holes = 0):
        if (num_holes == 0):
            # Randomize number_of_holes
        else:
            number_of_holes = num_holes

你说什么?还有别的方法吗?


答案 1

实际上,对于“魔术”值要好得多:None

class Cheese():
    def __init__(self, num_holes = None):
        if num_holes is None:
            ...

现在,如果您希望完全自由地添加更多参数:

class Cheese():
    def __init__(self, *args, **kwargs):
        #args -- tuple of anonymous arguments
        #kwargs -- dictionary of named arguments
        self.num_holes = kwargs.get('num_holes',random_holes())

为了更好地解释和的概念(您实际上可以更改这些名称):*args**kwargs

def f(*args, **kwargs):
   print 'args: ', args, ' kwargs: ', kwargs

>>> f('a')
args:  ('a',)  kwargs:  {}
>>> f(ar='a')
args:  ()  kwargs:  {'ar': 'a'}
>>> f(1,2,param=3)
args:  (1, 2)  kwargs:  {'param': 3}

http://docs.python.org/reference/expressions.html#calls


答案 2

使用作为默认值是可以的,如果你只有.num_holes=None__init__

如果需要多个独立的“构造函数”,可以将这些作为类方法提供。这些通常称为工厂方法。在这种情况下,您可以将 的默认值设置为 。num_holes0

class Cheese(object):
    def __init__(self, num_holes=0):
        "defaults to a solid cheese"
        self.number_of_holes = num_holes

    @classmethod
    def random(cls):
        return cls(randint(0, 100))

    @classmethod
    def slightly_holey(cls):
        return cls(randint(0, 33))

    @classmethod
    def very_holey(cls):
        return cls(randint(66, 100))

现在创建如下对象:

gouda = Cheese()
emmentaler = Cheese.random()
leerdammer = Cheese.slightly_holey()