如果Windows应用程序消息队列中没有消息,那么消息循环还会继续运行吗?

发布于 2024-12-20 11:59:28 字数 156 浏览 2 评论 0原文

我对Windows消息队列和消息循环有疑问。 任何人都可以帮助我理解,或者请提供一些参考链接。

如果Windows应用程序消息队列中没有消息,那么消息循环还会继续运行吗?

如果运行的话,应用程序会挂起吗?因为循环不断发生?它是如何运作的?

谢谢, 原

I have a doubt about windows message queue, and message loop.
Could any one help me in understanding, or pls provide some reference links.

If no message in windows application message queue, then will message loop still continuously runs?

If runs then, does application get hangs? since loop is continuously happening? How does it works?

Thanks,
hara

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜未央樱花落 2024-12-27 11:59:28

GetMessage() 将阻塞,直到消息到达队列。

这句话:

如果队列为空,该函数将阻塞,直到另一条消息排队。

来自 窗口消息

GetMessage() will block until a message arrives on the queue.

This quote:

If the queue is empty, the function blocks until another message is queued.

is from Window Messages.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文