继承Thread类的方式创建多线程
摘要:
package MoreThread; public class MoreThread implements Runnable{ @Override public void run() { for(int i = 0;i < 20;i++ ) { System.out.println(); ... 阅读全文
posted @ 2019-08-05 22:52 Lev1 阅读(469) 评论(0) 推荐(0) 编辑