Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
据我从文档中了解到,QUdpSocket 是异步的,但是,当发出信号 readyRead() 时,仍然在 UI 线程上执行从套接字读取。那是对的吗?从性能的角度来看,这安全吗?我应该在另一个线程中读取套接字的内容吗?
一切都取决于您是否需要处理大量数据。我已经使用了 TCP 套接字,其平均传输速度约为 20mbps,而不会阻塞 gui。最好的事情是自己检查。我认为您不必将套接字移动到其他线程