gpt4 book ai didi

java - 有没有办法从处理程序中删除匿名 Runnable?

转载 作者:行者123 更新时间:2023-11-29 03:31:19 25 4
gpt4 key购买 nike

Handler h = new Handler();
h.postDelayed(new Runnable(){...}, 5000);

有什么方法可以在 5 秒到期之前清除它,或者 Handler 是否没有可用于取消匿名 Runnable 的公共(public)方法?

最佳答案

Is there any way to clear this prior to the 5 second expiration

我认为这应该是一个技巧(但 Runnable 需要不是匿名的):

handler.removeCallBacks(runnable);

对于匿名的 runnables 应该可以工作:

handler.removeCallbacksAndMessages(null);

什么 source说:

Remove any pending posts of callbacks and sent messages whose obj is token. If token is null, all callbacks and messages will be removed.

关于java - 有没有办法从处理程序中删除匿名 Runnable?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18134040/

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