使用JDK 1.8的异步实现: public static void setTimeout(Runnable runnable, int delay){ new Thread(() -> { try { Thread.sleep(delay); ...
確定! 回上一頁