Android 处理程序消息队列

发布于 2024-11-04 06:50:42 字数 132 浏览 0 评论 0原文

我正在调用

handler.postDelayed(runnable, time); handler.post(runnable2);

在“时间”过去后,直到队列中的第一条消息处理后,第二个可运行的消息才会得到处理吗?

I am calling

handler.postDelayed(runnable, time);
handler.post(runnable2);

Will the second runnable not get handled until the first message in the queue does, after "time" has passed?

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

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

发布评论

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

评论(1

一杯敬自由 2024-11-11 06:50:42

不会。第二个可运行程序将立即发布,并在第一个可运行程序之前执行——无论如何,这取决于第一个可运行程序中的 time 参数。如果您以可忽略的时间延迟发布第一个,则它可能可以先执行。我不相信有任何保证不会。

No. The second runnable will be posted immediately and would execute before the first -- depending on the time parameter in the first, anyway. If you post the first with a negligible delay for time it's possible it could execute first. I don't believe there's any guarantee in place that it wouldn't.

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