gpt4 book ai didi

java - 使用时间来确定执行什么指令 - android

转载 作者:行者123 更新时间:2023-12-02 07:13:30 24 4
gpt4 key购买 nike

有没有办法使用时间戳或其他功能来确定执行什么操作?

例如单击按钮时执行“A”,除非在最后一秒内单击了该按钮,否则执行 B

最佳答案

您可以使用System.currentTimeMillis(),它返回以毫秒为单位的时间,例如

long last_click = 0;

// this is you interval time in milliseconds
long myTimeMillis = 1000;

// ... ... ...

// inside button click function

long time = System.currentTimeMillis()

if(time-last_click > myTimeMillis){
do_taskA();
}else{
do_taskB();
}

last_click = time;

关于java - 使用时间来确定执行什么指令 - android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15237166/

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