49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
"""
|
|
|
|
不使用多线程的情况 - 耗时间的任务阻塞主事件循环
|
|
|
|
Version: 0.1
|
|
Author: 骆昊
|
|
Date: 2018-03-20
|
|
|
|
"""
|
|
|
|
import time
|
|
import tkinter
|
|
import tkinter.messagebox
|
|
|
|
|
|
def download():
|
|
# 模拟下载任务需要花费10秒钟时间
|
|
time.sleep(10)
|
|
tkinter.messagebox.showinfo('提示', '下载完成!')
|
|
|
|
|
|
def show_about():
|
|
tkinter.messagebox.showinfo('关于', '作者: 骆昊(v1.0)')
|
|
|
|
|
|
def main():
|
|
top = tkinter.Tk()
|
|
top.title('单线程')
|
|
top.geometry('200x150')
|
|
top.wm_attributes('-topmost', True)
|
|
|
|
panel = tkinter.Frame(top)
|
|
button1 = tkinter.Button(panel, text='下载', command=download)
|
|
button1.pack(side='left')
|
|
button2 = tkinter.Button(panel, text='关于', command=show_about)
|
|
button2.pack(side='right')
|
|
panel.pack(side='bottom')
|
|
|
|
tkinter.mainloop()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|
|
|
|
# 在不使用多线程的情况下 一旦点击下载按钮 由于该操作需要花费10秒中的时间
|
|
# 整个主消息循环也会被阻塞10秒钟无法响应其他的事件
|
|
# 事实上 对于没有因果关系的子任务 这种顺序执行的方式并不合理
|