如果Windows应用程序消息队列中没有消息,那么消息循环还会继续运行吗?
我对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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.