我有一个名为main.py
的文件,其中包含一个名为mainWindow
的类。我有一个名为popupWindow.py
的第二个文件,其中包含一个名为popupWindow
的类。 mainWindow
类包含2个方法。一个叫clearListBox
清除主窗口中的列表框,一个名为addScouts(I)
,它是一个递归函数,用于将存储在文件中的侦察员写入列表框。我希望能够从我的班级clearListBox
拨打addScouts(I)
和popupWindow
。我如何实现这一目标?
尝试from main import mainWindow
后调用mainWindow.addScouts(1)
我收到addScouts
需要arg self
在我的main.py
文件中:
class mainWindow:
def __init__(self,master):
self.master = master
self._scouts = []
addBtn = Button(master,text="Create Scout",command=self._createScout)
addBtn.pack()
remBtn = Button(master,text="Remove Scout",command=self._removeScout)
remBtn.pack()
fndBtn = Button(master,text="Find Scout",command=self._findScout)
fndBtn.pack()
exitBtn = Button(master,text="Exit",command=self._exit)
exitBtn.pack()
scoutList = Listbox(master)
scoutList.pack()
self.scoutList = scoutList
self.addScouts(1)
w = 1000 #The value of the width
h = 750 #The value of the height of the window
# get screen width and height
ws = root.winfo_screenwidth()#This value is the width of the screen
hs = root.winfo_screenheight()#This is the height of the screen
# calculate position x, y
x = (ws/2) - (w/2)
y = (hs/2) - (h/2)
#This is responsible for setting the dimensions of the screen and where it is
#placed
root.geometry('%dx%d+%d+%d' % (w, h, x, y))
self._createLeaderboard()
def addScouts(self,I):
i = I
with open(fileName,"r") as f:
lines = f.readlines()
for line in lines:
if str(line.split(",")[3])[:-1] == str(i):
self.scoutList.insert(END,line[:-1])
i += 1
return self.addScouts(i)
return
def clearListBox(self):
self.scoutList.delete(0,END)
return
在popupWindow.py
:
from main import mainWindow
在popupWindow
课程中:
mainWindow.clearListBox()
mainWindow.addScouts(1)
我的错误:
Traceback (most recent call last):
File "C:\Users\KRIS\Documents\Python Projects\Scouts\popupWindow.py", line 4, in <module>
from main import mainWindow
File "C:\Users\KRIS\Documents\Python Projects\Scouts\main.py", line 4, in <module>
from popupWindow import *
File "C:\Users\KRIS\Documents\Python Projects\Scouts\popupWindow.py", line 4, in <module>
from main import mainWindow
ImportError: cannot import name 'mainWindow'
提前谢谢
答案 0 :(得分:2)
这个问题已经被问过一次又一次 - 而且不是特定于Python的。要在另一个类的实例上调用方法,您需要引用此实例。非常明显的解决方案是在呼叫时传递此引用:
class A(object):
def __init__(self, var_a):
self.var_a = var_a
def method(self, another_object):
return another_object.another_method(self.var_a)
class B(object):
def __init__(self, var_b):
self.var_b = var_b
def another_method(self, var):
return self.var_b + var
a = A(42)
b = B(1138)
print a.method(b)
或在实例时间:
class A(object):
def __init__(self, var_a, another_object):
self.var_a = var_a
self.another_object = another_object
def method(self):
return self.another_object.another_method(self.var_a)
class B(object):
def __init__(self, var_b):
self.var_b = var_b
def another_method(self, var):
return self.var_b + var
b = b(1138)
a = A(b)
print a.method()
请注意,在这两种情况下,B
都不需要了解类A
- 它只是将一个实例作为参数来获取它。因此,如果A
和B
位于不同的模块中,则包含B
的模块不必导入包含A
的模块:
# module b.py
class B(object):
def __init__(self, var_b):
self.var_b = var_b
def another_method(self, var):
return self.var_b + var
# module a.py
from b import B
class A(object):
def __init__(self, var_a, another_object):
self.var_a = var_a
self.another_object = another_object
def method(self):
return self.another_object.another_method(self.var_a)
if __name__ == "__main__":
b = b(1138)
a = A(b)
print a.method()
这可以避免你明显给出回溯的循环导入错误。
答案 1 :(得分:1)
在popupWindow.py
的开头,放行
from main import mainWindow
然后你可以打电话,例如mainWindow.clearListBox()
clearListBox
是一个实例方法,因此只能在实例上调用,而不能在类本身上调用。首先必须实例化mainWindow
类型的对象。
答案 2 :(得分:1)
根据您的问题以及您对@ niceguy的答案的评论,很清楚您的问题的解决方案是阅读the python tutorial:很快您就会学习关于模块(包括import
)和类(包括self
,以及调用类方法)。
修改:如果您已经了解了课程和实例,那么请注意您的问题:您的班级名称为mainWindow
,您的实例为mainWin
。您应该在mainWin
上调用您的函数,例如mainWin.addScouts(1)
;不在mainWindow
。