我有这堂课:
from threading import Thread
import time
class Timer(Thread):
def __init__(self, interval, function, *args, **kwargs):
Thread.__init__()
self.interval = interval
self.function = function
self.args = args
self.kwargs = kwargs
self.start()
def run(self):
time.sleep(self.interval)
return self.function(*self.args, **self.kwargs)
并用这个脚本调用它:
import timer
def hello():
print \"hello, world
t = timer.Timer(1.0, hello)
t.run()
并得到这个错误,我不知道为什么:unbound method __init__() must be called with instance as first argument