比如900秒要反应一下,说15分就直观了.下面两个函数性能差不多,大家任意取用. 代码: import java.util.concurrent.TimeUnit; public class TestTime { public static void main(String[] args) { long[] seconds = {3, 300, 3000, 30000, 3000009, 30000000,999999999999L }; long startTime,endTime; for…