gpt4 book ai didi

python - 继承 int 并覆盖 __init__ 方法 - Python

转载 作者:太空宇宙 更新时间:2023-11-03 13:23:30 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
inheritance from str or int

大家好,

我试图子类化 int 类,但没有成功。这是我的尝试:

class SpecialInt(int):
def __init__(self, x, base=10, important_text=''):
int.__init__(self, x, base)
self.important_text=important_text

如果我执行以下操作:

integer = SpecialInt(123, 10, 'rage of the unicorns')

我收到这个错误:

TypeRror: int() takes at most 2 arguments (3 given)

有什么想法吗? :)

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