python 在B类中调用A类的方法(在一个类中调用第二个类的方法)

在使用类的时候,我们有时候会想在一个类中调用其它类的方法。例如在B类中调用A类的方法

但是,我们又不是想在B类中继承A类,那么我们就需要在B类中实例化一个A类引用,然后再调用A类的方法,如下所示:

class MyGUI(wx.Frame):
    def __init__(self, title, size, loader):
        wx.Frame.__init__(self, None, 1, title, size=size)

        # The GUI is made ...

        textbox.TextCtrl(panel1, 1, pos=(67,7), size=(150, 20))
        self.textbox = textbox
        button1.Bind(wx.EVT_BUTTON, self.button1Click)
        self.loader = loader
        self.Show(True) 

    def button1Click(self, event):
        self.loader.LoadThread(get_thread_id(), self.textbox)


class WebParser:
    def LoadThread(self, thread_id, a_textbox):
        do_something_with(a_textbox)


TheGUI = MyGUI("Text RPG", (500,500), WebParser())

TheApp.MainLoop()

在MyGui里面,我们想调用WebParser的load thread,那么我们就要实例一个WebParser传递给MyGUI,这种问题本质上是一个通信问题。

 

你可能感兴趣的:(python,learning)