实现进程的两种方式
摘要:方式一:继承Tread类 class Mythread extends Tread{ @override public void run(){ //程序逻辑部分 } } Mythread m = new Mythread(); m.start(); 方式二:实现Runable()接口 class M
阅读全文
posted @ 2022-09-23 17:19
posted @ 2022-09-23 17:19
posted @ 2022-09-23 16:50
posted @ 2022-09-06 21:24
posted @ 2022-09-06 11:20
posted @ 2022-09-05 21:16