摘要: 1、第一种写法 Thread thread = new Thread(MyMethod); static void MyMethod() { console.write("我是不带参数的委托方法"); } thread.start(); 2、第二种写法,匿名委托: Thread thread2= n 阅读全文
posted @ 2020-04-30 23:20 boenotuch 阅读(861) 评论(0) 推荐(0)