gpt4 book ai didi

java - 匿名可运行实现并将其发布到处理程序

转载 作者:行者123 更新时间:2023-12-02 06:03:27 26 4
gpt4 key购买 nike

我知道附加到主线程的处理程序在主线程上运行。

final Handler handler = new Handler(Looper.getMainLooper());

handler.postDelayed(new Runnable() {
@Override
public void run() {


}, DELAY_MS);

上面的 run 方法实际上是在不同的后台线程上执行的。

最佳答案

不,这只会在MainThread上执行。

为什么?因为您正在创建的 Runnable 已在 Loopers MessageQueue 中排队(可以包含 Runnable 或 other things ),并将按顺序处理。如果你想更深入地了解已经有a great question about the Looper asked

关于java - 匿名可运行实现并将其发布到处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55959958/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com