Java多线程(1)

2021/4/12 20:29:35

本文主要是介绍Java多线程(1),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

我回来了,兄弟们,以后稳定每日一更哈。废话不多说,直接上码。

 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<=5;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 }

还是老规矩,难度依次上升。有什么不足之处下方评论,你的支持,是我更新最大的动力。



这篇关于Java多线程(1)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程