PyQt/QThread/README.md
2020-11-27 11:33:28 +08:00

45 lines
No EOL
1.3 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# QThread
- 目录
- [继承QThread](#1继承QThread)
- [moveToThread](#2moveToThread)
- [线程挂起恢复](#3线程挂起恢复)
- [线程休眠唤醒](#4线程休眠唤醒)
- [线程退出](#5线程退出)
## 1、继承QThread
[运行 InheritQThread.py](InheritQThread.py)
![InheritQThread](ScreenShot/InheritQThread.png)
## 2、moveToThread
[运行 moveToThread.py](moveToThread.py)
![moveToThread](ScreenShot/InheritQThread.png)
## 3、线程挂起恢复
[运行 SuspendThread.py](SuspendThread.py)
注意,这里只是简单演示,在应用这些代码时要小心
1. 这里使用windows的api实现主要用到`SuspendThread`和`ResumeThread`函数
1. 利用`ctypes.windll.kernel32.OpenThread(win32con.PROCESS_ALL_ACCESS, False, int(QThread.currentThreadId()))`
1. 得到线程的句柄,然后就可以通过上面的两个函数对其进行挂起与恢复
`ctypes.windll.kernel32.TerminateThread`终止线程,不推荐
![SuspendThread](ScreenShot/SuspendThread.gif)
## 4、线程休眠唤醒
[运行 WakeupThread.py](WakeupThread.py)
使用 `QWaitCondition``wait``wakeAll` 方法
![WakeupThread](ScreenShot/WakeupThread.gif)
## 5、线程退出
[运行 QuitThread.py](QuitThread.py)
`isInterruptionRequested``requestInterruption` 函数作为退出标识调用
![QuitThread](ScreenShot/QuitThread.jpg)