Asynchronous implementation with JDK 1.8: public static void setTimeout(Runnable runnable, int delay){ new Thread(() -> { try { Thread.sleep(delay); ...
確定! 回上一頁