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.
我们的 Qt 应用程序write()将大量数据发送到 aQProcess的标准输入。通常,该进程的读取速度比我的 Qt 应用程序的写入速度快。所以一切都很好。
write()
QProcess
问题是反过来会发生什么?未读缓冲区是否会随着时间的推移不断增加,超出操作系统允许的范围?还是Qt设置了限制。我在 Qt 的文档中找不到任何内容,或者我找不到任何缓冲区溢出警告信号,我可以用来减慢应用程序的写入速度。