0
我正在測試kivy.clock.Clock.schedule_interval函數的功能。Clock.schedule_interval不計劃回調
我的schedule_interval沒有調用測試函數,而是沒有任何錯誤地退出。
什麼是我不理解?我已經通過文檔正確地建模了這個測試。
from kivy.clock import Clock
class TestClass:
def __init__(self):
print("function __init__.")
schedule = Clock.schedule_interval(self.test, 1)
def test(self, dt):
print("function test.")
if __name__ == '__main__':
a = TestClass()
預期輸出應該是:
function __init__.
function test.
function test.
function test.
function test.
function test.
function test.
相反,我剛:
function __init__.
非常感謝您的解釋。它適用於兩種方式。 –