鱼C论坛

 找回密码
 立即注册
查看: 1361|回复: 1

[已解决]求解

[复制链接]
发表于 2020-11-7 19:29:51 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
class MyTimer(int):
    def __add__(self,other):
       obj_time_total = int.__add__((self.end - self.start),(other.end - other.start))
       return '总共用时' + str(obj_time_total)

    def __init__(self):
        self.begin = 0
        self.end =  0
        self.feedback = '未开始计时'

    def __str__(self):
        return self.feedback
    def __repr__(self):
        return self.feedback

    def start(self):
        self.feedback = '请先停止计时'
        #开始时间
        self.begin = t.perf_counter()

    def stop(self):
        if not self.begin:
            print('请先开始计时')
        else:
            self.end = t.perf_counter()
            print('计时停止')
            self.count_time()

    def count_time(self):
        self.feedback = '总计时:'
        total = self.end - self.begin
        print('%s%f秒' % (self.feedback,total))


t1 = MyTimer()
t1.start()
t.sleep(2)
t1.stop()
t2 = MyTimer()
t2.start()
t.sleep(1)
t2.stop()
t1 + t2
print(t1)
print(t2)
为什么会报错
Traceback (most recent call last):
  File "D:/python代码库/My_timer.py", line 58, in <module>
    t1 + t2
  File "D:/python代码库/My_timer.py", line 17, in __add__
    obj_time_total = int.__add__((self.end - self.start),(other.end - other.start))
TypeError: unsupported operand type(s) for -: 'float' and 'method'
最佳答案
2020-11-7 19:51:25
1、你定义的类是继承于int类。
class MyTimer(int):
2、出错代码在t1 + t2,t1和t2都是继承于int的MyTimer类的实例化对象
t1+t2的时候,会自动调用int.__add__方法,但这个方法只支持整数形,因此会报错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-7 19:51:25 | 显示全部楼层    本楼为最佳答案   
1、你定义的类是继承于int类。
class MyTimer(int):
2、出错代码在t1 + t2,t1和t2都是继承于int的MyTimer类的实例化对象
t1+t2的时候,会自动调用int.__add__方法,但这个方法只支持整数形,因此会报错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 23:17

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表