摘要:
复习练习exercise public static void main(String[] args) { Date st = new Date(System.currentTimeMillis()); //倒计时 int a = 16; while (true){ System.out.print 阅读全文
摘要:
线程 Thread 类被继承 重写run()方法 start()启动线程 public class TestThread extends Thread { @Override public void run() { super.run(); for(int i = 0;i<1000;i++){ Sy 阅读全文