gpt4 book ai didi

python - 什么是实现多个构造函数的干净 "pythonic"方式?

转载 作者:IT老高 更新时间:2023-10-28 12:00:25 26 4
gpt4 key购买 nike

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

假设我有一个名为 Cheese 的类,它具有 number_of_holes 属性。我怎样才能有两种方法来创建奶酪对象...

  1. 一个像这样有很多洞的人:parmesan = Cheese(num_holes = 15)
  2. 还有一个不带参数,只是随机化 number_of_holes 属性:gouda = Cheese()

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

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

你说什么?还有其他方法吗?

最佳答案

实际上 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

关于python - 什么是实现多个构造函数的干净 "pythonic"方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/682504/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com