Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在后台运行一个函数,它每秒检查一个 url。 我已经有检查 url 的功能,但我想每秒运行一次这个功能,同时我可以手动启动功能。 我希望你能理解我的问题。
谢谢
我认为这是您使用线程的正确时机
java中的线程介绍
这是您需要做的: 在您的程序中,在您开始手动功能之前以及当您想要开始检查该 url 时,启动一个每秒循环一次的线程,该线程运行该 url 检查功能。 在主程序中,启动线程后,就可以开始运行手动函数了