请问这题中的刷新怎么实现??

https://img3.mukewang.com/5af7f44b000153db20720296.jpg

qq_冥想_3
浏览 957回答 1
1回答

产品经理不是经理

public class TimeCounter {     public static void startCount(int begin){             while (begin>0){                 System.out.println("还剩"+begin+"秒");                 try {                     Thread.sleep(1000);                 } catch (InterruptedException e) {                     e.printStackTrace();                 }                 begin = begin -1;             }     }     public static void main(String[] args) {         startCount(10);     } }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java