子类化 int 并重写 __init__ 方法 - Python

发布于 2024-11-01 17:39:44 字数 625 浏览 1 评论 0原文

可能的重复:
从 str 或 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)

有什么想法吗? :)

Possible Duplicate:
inheritance from str or int

Hi folks,

I'm trying to subclass the int class without any success. Here is my attempt:

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

If I perform the following:

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

I get this error:

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

Any ideas? :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2024-11-08 17:39:44

请参阅__new__

__new__() 主要旨在允许不可变类型(如 int、str 或 tuple)的子类自定义实例创建。为了自定义类创建,它通常在自定义元类中被重写。

See __new__:

__new__() is intended mainly to allow subclasses of immutable types (like int, str, or tuple) to customize instance creation. It is also commonly overridden in custom metaclasses in order to customize class creation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文