class Application(tk.Frame):中调用其他class里的内容应该如何编写代码
时间: 2024-02-22 07:00:41 浏览: 119
Class.Model.js:118行实现的一个简单的Javascript的对象模型
如果您想在`Application`类中调用其他类的内容,可以在`Application`类的构造函数中创建其他类的实例,并将这些实例作为`Application`类的属性。例如:
```python
class Application(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.pack()
self.other_class_instance = OtherClass()
def some_method(self):
self.other_class_instance.some_method()
```
在上面的代码中,`Application`类创建了`OtherClass`类的实例,并将其存储为属性`other_class_instance`。然后,`Application`类中的`some_method()`方法可以使用`other_class_instance`来调用`OtherClass`类的某个方法。
阅读全文