Java多线程(1)
2021-06-04 15:03
标签:exce who thread 线程 run oid class 每日 except 我回来了,兄弟们,以后稳定每日一更哈。废话不多说,直接上码。 还是老规矩,难度依次上升。有什么不足之处下方评论,你的支持,是我更新最大的动力。 Java多线程(1) 标签:exce who thread 线程 run oid class 每日 except 原文地址:https://www.cnblogs.com/ljydbk/p/14648544.html 1 class MyThread extends Thread {
2 private String who;
3 public MyThread(String str) {
4 who=str;
5 }
6 public void run() { //线程执行体
7 for(int i=0;i) {
8 try {
9 sleep((int)(1000*Math.random()));
10 }
11 catch(InterruptedException e) {
12 System.out.println(e.toString());
13 }
14 System.out.println(who+"正在运行!!");
15 }
16 }
17 }
18 public class Test {
19
20 public static void main(String[] args) {
21
22 MyThread you=new MyThread("你");
23 MyThread she=new MyThread("她");
24 you.start();
25 she.start();
26 System.out.println("主方法main()运行结束");
27
28 }
29
30 }
上一篇:C语言网络编程——TCP
下一篇:c语言入门教程–-6循环语句