更新 README.md
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
# 产测工具
|
# 产测工具
|
||||||
|
|
||||||
遇到问题:
|
## 遇到问题:
|
||||||
2024.09.01
|
|
||||||
|
### 2024.09.01
|
||||||
1. 运行报错:QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread
|
1. 运行报错:QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread
|
||||||
问题分析:主线程创建了 QTcpSocket,这个QTcpSocket的读写操作必须在主线程中执行,不能将QTcpSocket对象通过新建的对象传参后到新建对象中对QTcpSocket进行读写操作,所有的QTcpSocket 的操作都在与它关联的线程中执行。
|
问题分析:主线程创建了 QTcpSocket,这个QTcpSocket的读写操作必须在主线程中执行,不能将QTcpSocket对象通过新建的对象传参后到新建对象中对QTcpSocket进行读写操作,所有的QTcpSocket 的操作都在与它关联的线程中执行。
|
||||||
问题解决:1. 在主线程中创建 QTcpSocket 并获取连接:
|
问题解决:1. 在主线程中创建 QTcpSocket 并获取连接:
|
||||||
|
|||||||
Reference in New Issue
Block a user