所以我有一个 close() 方法,当用户单击关闭按钮时会调用该方法。关闭方法如下:
def close(self):
ThreadedClient.endApplication()
root.destroy()
close() 方法位于 GUI() 类中。close 方法需要调用 ThreadedClient 类中的 endApplication() 方法。但相反,它给了我这个错误:
TypeError: unbound method endApplication() must be called with ThreadedClient instance as first argument (got nothing instead)
这可能是一个简单的解决方案,但我只是不知道如何解决它。任何帮助表示赞赏!