gpt4 book ai didi

python - 继承 Python 的 datetime.time

转载 作者:太空宇宙 更新时间:2023-11-04 01:25:56 25 4
gpt4 key购买 nike

无论出于何种原因,我想将 datetime.time 子类化,以便子类可以由另一个 datetime.time 对象初始化。遗憾的是,这不起作用:

class MyTime(datetime.time):
def __init__(self, t):
super().__init__(t.hour, t.minute, t.second, t.microsecond)

>>> t=datetime.time(10,20,30,400000)
>>> MyTime(t)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: an integer is required

显然我在做一些愚蠢的事情,但那是什么?

最佳答案

  1. super() 不像在 Python 2.x 中那样工作。您想改用 super(MyTime, self)

  2. 在这种情况下,您必须覆盖 __new__ 而不是 __init__:

    class MyTime(datetime.time):
    def __new__(cls, t):
    return datetime.time.__new__(cls, t.hour, t.minute, t.second, t.microsecond)

    print MyTime(datetime.time(10,20,30,400000))

    打印

    10:20:30.400000

关于python - 继承 Python 的 datetime.time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18011233/

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