java中的多线程实例

在java中要想实现多线程,有两种手段,一种是继续Thread类,另外一种是实现Runable接口。

对于直接继承Thread的类来说,代码大致框架是:
view sourceprint?
01    class 类名 extends Thread{
02    方法1;
03    方法2;
04    …
05    public void run(){
06    // other code…
07    }
08    属性1;
09    属性2;
10    …
11    
12    }

先看一个简单的例子:
view sourceprint?
01    /**
02     * @author Rollen-Holt 继承Thread类,直接调用run方法
03     * */
04    class hello extends Thread {
05    
06        public hello() {
07    
08        }
09    
10        public hello(String name) {
11            this.name = name;
12        }
13    
14        public void run() {
15            for (int i = 0; i < 5; i++) {
16                System.out.println(name + "运行     " + i);
17            }
18        }
19    
20        public static void main(String[] args) {
21            hello h1=new hello("A");
22            hello h2=new hello("B");
23            h1.run();
24            h2.run();
25        }
26    
27        private String name;
28    }

【运行结果】:

A运行     0

A运行     1

A运行     2

A运行     3

A运行     4

B运行     0

B运行     1

B运行     2

B运行     3

B运行     4

我们会发现这些都是顺序执行的,说明我们的调用方法不对,应该调用的是start()方法。

当我们把上面的主函数修改为如下所示的时候:
view sourceprint?
1    public static void main(String[] args) {
2            hello h1=new hello("A");
3            hello h2=new hello("B");
4            h1.start();
5            h2.start();
6        }

然后运行程序,输出的可能的结果如下:

A运行     0

B运行     0

B运行     1

B运行     2

B运行     3

B运行     4

A运行     1

A运行     2

A运行     3

A运行     4

因为需要用到CPU的资源,所以每次的运行结果基本是都不一样的,呵呵。

注意:虽然我们在这里调用的是start()方法,但是实际上调用的还是run()方法的主体。

那么:为什么我们不能直接调用run()方法呢?

我的理解是:线程的运行需要本地操作系统的支持。

如果你查看start的源代码的时候,会发现:
view sourceprint?
01    public synchronized void start() {
02            /**
03         * This method is not invoked for the main method thread or "system"
04         * group threads created/set up by the VM. Any new functionality added
05         * to this method in the future may have to also be added to the VM.
06         *
07         * A zero status value corresponds to state "NEW".
08             */
09            if (threadStatus != 0 || this != me)
10                throw new IllegalThreadStateException();
11            group.add(this);
12            start0();
13            if (stopBeforeStart) {
14            stop0(throwableFromStop);
15        }
16    }
17    private native void start0();

注意我用红色加粗的那一条语句,说明此处调用的是start0()。并且这个这个方法用了native关键字,次关键字表示调用本地操作系统的函数。因为多线程的实现需要本地操作系统的支持。

但是start方法重复调用的话,会出现java.lang.IllegalThreadStateException异常。

通过实现Runnable接口:

 

大致框架是:
view sourceprint?
01    class 类名 implements Runnable{
02    方法1;
03    方法2;
04    …
05    public void run(){
06    // other code…
07    }
08    属性1;
09    属性2;
10    …
11    
12    }

来先看一个小例子吧:
view sourceprint?
01    /**
02     * @author Rollen-Holt 实现Runnable接口
03     * */
04    class hello implements Runnable {
05    
06        public hello() {
07    
08        }
09    
10        public hello(String name) {
11            this.name = name;
12        }
13    
14        public void run() {
15            for (int i = 0; i < 5; i++) {
16                System.out.println(name + "运行     " + i);
17            }
18        }
19    
20        public static void main(String[] args) {
21            hello h1=new hello("线程A");
22            Thread demo= new Thread(h1);
23            hello h2=new hello("线程B");
24            Thread demo1=new Thread(h2);
25            demo.start();
26            demo1.start();
27        }
28    
29        private String name;
30    }

【可能的运行结果】:

线程A运行     0

线程B运行     0

线程B运行     1

线程B运行     2

线程B运行     3

线程B运行     4

线程A运行     1

线程A运行     2

线程A运行     3

线程A运行     4

 

关于选择继承Thread还是实现Runnable接口?

其实Thread也是实现Runnable接口的:
view sourceprint?
1    class Thread implements Runnable {
2        //…
3    public void run() {
4            if (target != null) {
5                 target.run();
6            }
7            }
8    }

其实Thread中的run方法调用的是Runnable接口的run方法。不知道大家发现没有,Thread和Runnable都实现了run方法,这种操作模式其实就是代理模式。关于代理模式,我曾经写过一个小例子呵呵,大家有兴趣的话可以看一下:http://www.cnblogs.com/rollenholt/archive/2011/08/18/2144847.html

Thread和Runnable的区别:

如果一个类继承Thread,则不适合资源共享。但是如果实现了Runable接口的话,则很容易的实现资源共享。
view sourceprint?
01    /**
02     * @author Rollen-Holt 继承Thread类,不能资源共享
03     * */
04    class hello extends Thread {
05        public void run() {
06            for (int i = 0; i < 7; i++) {
07                if (count > 0) {
08                    System.out.println("count= " + count--);
09                }
10            }
11        }
12    
13        public static void main(String[] args) {
14            hello h1 = new hello();
15            hello h2 = new hello();
16            hello h3 = new hello();
17            h1.start();
18            h2.start();
19            h3.start();
20        }
21    
22        private int count = 5;
23    }

【运行结果】:

count= 5

count= 4

count= 3

count= 2

count= 1

count= 5

count= 4

count= 3

count= 2

count= 1

count= 5

count= 4

count= 3

count= 2

count= 1

大家可以想象,如果这个是一个买票系统的话,如果count表示的是车票的数量的话,说明并没有实现资源的共享。

我们换为Runnable接口:
view sourceprint?
01    /**
02     * @author Rollen-Holt 继承Thread类,不能资源共享
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for (int i = 0; i < 7; i++) {
07                if (count > 0) {
08                    System.out.println("count= " + count--);
09                }
10            }
11        }
12    
13        public static void main(String[] args) {
14            hello he=new hello();
15            new Thread(he).start();
16        }
17    
18        private int count = 5;
19    }

【运行结果】:

count= 5

count= 4

count= 3

count= 2

count= 1

 

总结一下吧:

实现Runnable接口比继承Thread类所具有的优势:

1):适合多个相同的程序代码的线程去处理同一个资源

2):可以避免java中的单继承的限制

3):增加程序的健壮性,代码可以被多个线程共享,代码和数据独立。

所以,本人建议大家劲量实现接口。
view sourceprint?
01    /**
02     * @author Rollen-Holt
03     * 取得线程的名称
04     * */
05    class hello implements Runnable {
06        public void run() {
07            for (int i = 0; i < 3; i++) {
08                System.out.println(Thread.currentThread().getName());
09            }
10        }
11    
12        public static void main(String[] args) {
13            hello he = new hello();
14            new Thread(he,"A").start();
15            new Thread(he,"B").start();
16            new Thread(he).start();
17        }
18    }

【运行结果】:

A

A

A

B

B

B

Thread-0

Thread-0

Thread-0

说明如果我们没有指定名字的话,系统自动提供名字。

提醒一下大家:main方法其实也是一个线程。在java中所以的线程都是同时启动的,至于什么时候,哪个先执行,完全看谁先得到CPU的资源。

 

在java中,每次程序运行至少启动2个线程。一个是main线程,一个是垃圾收集线程。因为每当使用java命令执行一个类的时候,实际上都会启动一个JVM,每一个jVM实习在就是在操作系统中启动了一个进程。

判断线程是否启动
view sourceprint?
01    /**
02     * @author Rollen-Holt 判断线程是否启动
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for (int i = 0; i < 3; i++) {
07                System.out.println(Thread.currentThread().getName());
08            }
09        }
10    
11        public static void main(String[] args) {
12            hello he = new hello();
13            Thread demo = new Thread(he);
14            System.out.println("线程启动之前---》" + demo.isAlive());
15            demo.start();
16            System.out.println("线程启动之后---》" + demo.isAlive());
17        }
18    }

【运行结果】

线程启动之前---》false

线程启动之后---》true

Thread-0

Thread-0

Thread-0

主线程也有可能在子线程结束之前结束。并且子线程不受影响,不会因为主线程的结束而结束。

 

线程的强制执行:
view sourceprint?
01    /**
02         * @author Rollen-Holt 线程的强制执行
03         * */
04        class hello implements Runnable {
05            public void run() {
06                for (int i = 0; i < 3; i++) {
07                    System.out.println(Thread.currentThread().getName());
08                }
09            }
10         
11            public static void main(String[] args) {
12                hello he = new hello();
13                Thread demo = new Thread(he,"线程");
14                demo.start();
15                for(int i=0;i<50;++i){
16                    if(i>10){
17                        try{
18                            demo.join();  //强制执行demo
19                        }catch (Exception e) {
20                            e.printStackTrace();
21                        }
22                    }
23                    System.out.println("main 线程执行-->"+i);
24                }
25            }
26        }

【运行的结果】:

main 线程执行-->0

main 线程执行-->1

main 线程执行-->2

main 线程执行-->3

main 线程执行-->4

main 线程执行-->5

main 线程执行-->6

main 线程执行-->7

main 线程执行-->8

main 线程执行-->9

main 线程执行-->10

线程

线程

线程

main 线程执行-->11

main 线程执行-->12

main 线程执行-->13

...

 

线程的休眠:
view sourceprint?
01    /**
02     * @author Rollen-Holt 线程的休眠
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for (int i = 0; i < 3; i++) {
07                try {
08                    Thread.sleep(2000);
09                } catch (Exception e) {
10                    e.printStackTrace();
11                }
12                System.out.println(Thread.currentThread().getName() + i);
13            }
14        }
15    
16        public static void main(String[] args) {
17            hello he = new hello();
18            Thread demo = new Thread(he, "线程");
19            demo.start();
20        }
21    }

【运行结果】:(结果每隔2s输出一个)

线程0

线程1

线程2

 

线程的中断:
view sourceprint?
01    /**
02     * @author Rollen-Holt 线程的中断
03     * */
04    class hello implements Runnable {
05        public void run() {
06            System.out.println("执行run方法");
07            try {
08                Thread.sleep(10000);
09                System.out.println("线程完成休眠");
10            } catch (Exception e) {
11                System.out.println("休眠被打断");
12                return;  //返回到程序的调用处
13            }
14            System.out.println("线程正常终止");
15        }
16    
17        public static void main(String[] args) {
18            hello he = new hello();
19            Thread demo = new Thread(he, "线程");
20            demo.start();
21            try{
22                Thread.sleep(2000);
23            }catch (Exception e) {
24                e.printStackTrace();
25            }
26            demo.interrupt(); //2s后中断线程
27        }
28    }

【运行结果】:

执行run方法

休眠被打断

 

在java程序中,只要前台有一个线程在运行,整个java程序进程不会小时,所以此时可以设置一个后台线程,这样即使java进程小时了,此后台线程依然能够继续运行。
view sourceprint?
01    /**
02     * @author Rollen-Holt 后台线程
03     * */
04    class hello implements Runnable {
05        public void run() {
06            while (true) {
07                System.out.println(Thread.currentThread().getName() + "在运行");
08            }
09        }
10    
11        public static void main(String[] args) {
12            hello he = new hello();
13            Thread demo = new Thread(he, "线程");
14            demo.setDaemon(true);
15            demo.start();
16        }
17    }

虽然有一个死循环,但是程序还是可以执行完的。因为在死循环中的线程操作已经设置为后台运行了。

线程的优先级:
view sourceprint?
01    /**
02     * @author Rollen-Holt 线程的优先级
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for(int i=0;i<5;++i){
07                System.out.println(Thread.currentThread().getName()+"运行"+i);
08            }
09        }
10    
11        public static void main(String[] args) {
12            Thread h1=new Thread(new hello(),"A");
13            Thread h2=new Thread(new hello(),"B");
14            Thread h3=new Thread(new hello(),"C");
15            h1.setPriority(8);
16            h2.setPriority(2);
17            h3.setPriority(6);
18            h1.start();
19            h2.start();
20            h3.start();
21             
22        }
23    }

【运行结果】:

A运行0

A运行1

A运行2

A运行3

A运行4

B运行0

C运行0

C运行1

C运行2

C运行3

C运行4

B运行1

B运行2

B运行3

B运行4

。但是请读者不要误以为优先级越高就先执行。谁先执行还是取决于谁先去的CPU的资源、

 

另外,主线程的优先级是5.

线程的礼让。

在线程操作中,也可以使用yield()方法,将一个线程的操作暂时交给其他线程执行。
view sourceprint?
01    /**
02     * @author Rollen-Holt 线程的优先级
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for(int i=0;i<5;++i){
07                System.out.println(Thread.currentThread().getName()+"运行"+i);
08                if(i==3){
09                    System.out.println("线程的礼让");
10                    Thread.currentThread().yield();
11                }
12            }
13        }
14    
15        public static void main(String[] args) {
16            Thread h1=new Thread(new hello(),"A");
17            Thread h2=new Thread(new hello(),"B");
18            h1.start();
19            h2.start();
20             
21        }
22    }

A运行0

A运行1

A运行2

A运行3

线程的礼让

A运行4

B运行0

B运行1

B运行2

B运行3

线程的礼让

B运行4

 

 

同步和死锁:

【问题引出】:比如说对于买票系统,有下面的代码:
view sourceprint?
01    /**
02     * @author Rollen-Holt
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for(int i=0;i<10;++i){
07                if(count>0){
08                    try{
09                        Thread.sleep(1000);
10                    }catch(InterruptedException e){
11                        e.printStackTrace();
12                    }
13                    System.out.println(count--);
14                }
15            }
16        }
17    
18        public static void main(String[] args) {
19            hello he=new hello();
20            Thread h1=new Thread(he);
21            Thread h2=new Thread(he);
22            Thread h3=new Thread(he);
23            h1.start();
24            h2.start();
25            h3.start();
26        }
27        private int count=5;
28    }

【运行结果】:

5

4

3

2

1

0

-1

这里出现了-1,显然这个是错的。,应该票数不能为负值。

如果想解决这种问题,就需要使用同步。所谓同步就是在统一时间段中只有有一个线程运行,

其他的线程必须等到这个线程结束之后才能继续执行。

【使用线程同步解决问题】

采用同步的话,可以使用同步代码块和同步方法两种来完成。

 

【同步代码块】:

语法格式:

synchronized(同步对象){

 //需要同步的代码

}

但是一般都把当前对象this作为同步对象。

比如对于上面的买票的问题,如下:
view sourceprint?
01    /**
02     * @author Rollen-Holt
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for(int i=0;i<10;++i){
07                synchronized (this) {
08                    if(count>0){
09                        try{
10                            Thread.sleep(1000);
11                        }catch(InterruptedException e){
12                            e.printStackTrace();
13                        }
14                        System.out.println(count--);
15                    }
16                }
17            }
18        }
19    
20        public static void main(String[] args) {
21            hello he=new hello();
22            Thread h1=new Thread(he);
23            Thread h2=new Thread(he);
24            Thread h3=new Thread(he);
25            h1.start();
26            h2.start();
27            h3.start();
28        }
29        private int count=5;
30    }

【运行结果】:(每一秒输出一个结果)

5

4

3

2

1

【同步方法】

也可以采用同步方法。

语法格式为synchronized 方法返回类型 方法名(参数列表){

    // 其他代码

}

现在,我们采用同步方法解决上面的问题。
view sourceprint?
01    /**
02     * @author Rollen-Holt
03     * */
04    class hello implements Runnable {
05        public void run() {
06            for (int i = 0; i < 10; ++i) {
07                sale();
08            }
09        }
10    
11        public synchronized void sale() {
12            if (count > 0) {
13                try {
14                    Thread.sleep(1000);
15                } catch (InterruptedException e) {
16                    e.printStackTrace();
17                }
18                System.out.println(count--);
19            }
20        }
21    
22        public static void main(String[] args) {
23            hello he = new hello();
24            Thread h1 = new Thread(he);
25            Thread h2 = new Thread(he);
26            Thread h3 = new Thread(he);
27            h1.start();
28            h2.start();
29            h3.start();
30        }
31    
32        private int count = 5;
33    }

【运行结果】(每秒输出一个)

5

4

3

2

1

提醒一下,当多个线程共享一个资源的时候需要进行同步,但是过多的同步可能导致死锁。

此处列举经典的生产者和消费者问题。

【生产者和消费者问题】

先看一段有问题的代码。
view sourceprint?
01    class Info {
02    
03        public String getName() {
04            return name;
05        }
06    
07        public void setName(String name) {
08            this.name = name;
09        }
10    
11        public int getAge() {
12            return age;
13        }
14    
15        public void setAge(int age) {
16            this.age = age;
17        }
18    
19        private String name = "Rollen";
20        private int age = 20;
21    }
22    
23    /**
24     * 生产者
25     * */
26    class Producer implements Runnable{
27        private Info info=null;
28        Producer(Info info){
29            this.info=info;
30        }
31         
32        public void run(){
33            boolean flag=false;
34            for(int i=0;i<25;++i){
35                if(flag){
36                    this.info.setName("Rollen");
37                    try{
38                        Thread.sleep(100);
39                    }catch (Exception e) {
40                        e.printStackTrace();
41                    }
42                    this.info.setAge(20);
43                    flag=false;
44                }else{
45                    this.info.setName("chunGe");
46                    try{
47                        Thread.sleep(100);
48                    }catch (Exception e) {
49                        e.printStackTrace();
50                    }
51                    this.info.setAge(100);
52                    flag=true;
53                }
54            }
55        }
56    }
57    /**
58     * 消费者类
59     * */
60    class Consumer implements Runnable{
61        private Info info=null;
62        public Consumer(Info info){
63            this.info=info;
64        }
65         
66        public void run(){
67            for(int i=0;i<25;++i){
68                try{
69                    Thread.sleep(100);
70                }catch (Exception e) {
71                    e.printStackTrace();
72                }
73                System.out.println(this.info.getName()+"<---->"+this.info.getAge());
74            }
75        }
76    }
77    
78    /**
79     * 测试类
80     * */
81    class hello{
82        public static void main(String[] args) {
83            Info info=new Info();
84            Producer pro=new Producer(info);
85            Consumer con=new Consumer(info);
86            new Thread(pro).start();
87            new Thread(con).start();
88        }
89    }

【运行结果】:

Rollen<---->100

chunGe<---->20

chunGe<---->100

Rollen<---->100

chunGe<---->20

Rollen<---->100

Rollen<---->100

Rollen<---->100

chunGe<---->20

chunGe<---->20

chunGe<---->20

Rollen<---->100

chunGe<---->20

Rollen<---->100

chunGe<---->20

Rollen<---->100

chunGe<---->20

Rollen<---->100

chunGe<---->20

Rollen<---->100

chunGe<---->20

Rollen<---->100

chunGe<---->20

Rollen<---->100

chunGe<---->20

大家可以从结果中看到,名字和年龄并没有对于。

 

那么如何解决呢?

1) 加入同步

2) 加入等待和唤醒

先来看看加入同步会是如何。
view sourceprint?
01    class Info {
02         
03        public String getName() {
04            return name;
05        }
06    
07        public void setName(String name) {
08            this.name = name;
09        }
10    
11        public int getAge() {
12            return age;
13        }
14    
15        public void setAge(int age) {
16            this.age = age;
17        }
18    
19        public synchronized void set(String name, int age){
20            this.name=name;
21            try{
22                Thread.sleep(100);
23            }catch (Exception e) {
24                e.printStackTrace();
25            }
26            this.age=age;
27        }
28         
29        public synchronized void get(){
30            try{
31                Thread.sleep(100);
32            }catch (Exception e) {
33                e.printStackTrace();
34            }
35            System.out.println(this.getName()+"<===>"+this.getAge());
36        }
37        private String name = "Rollen";
38        private int age = 20;
39    }
40    
41    /**
42     * 生产者
43     * */
44    class Producer implements Runnable {
45        private Info info = null;
46    
47        Producer(Info info) {
48            this.info = info;
49        }
50    
51        public void run() {
52            boolean flag = false;
53            for (int i = 0; i < 25; ++i) {
54                if (flag) {
55                     
56                    this.info.set("Rollen", 20);
57                    flag = false;
58                } else {
59                    this.info.set("ChunGe", 100);
60                    flag = true;
61                }
62            }
63        }
64    }
65    
66    /**
67     * 消费者类
68     * */
69    class Consumer implements Runnable {
70        private Info info = null;
71    
72        public Consumer(Info info) {
73            this.info = info;
74        }
75    
76        public void run() {
77            for (int i = 0; i < 25; ++i) {
78                try {
79                    Thread.sleep(100);
80                } catch (Exception e) {
81                    e.printStackTrace();
82                }
83                this.info.get();
84            }
85        }
86    }
87    
88    /**
89     * 测试类
90     * */
91    class hello {
92        public static void main(String[] args) {
93            Info info = new Info();
94            Producer pro = new Producer(info);
95            Consumer con = new Consumer(info);
96            new Thread(pro).start();
97            new Thread(con).start();
98        }
99    }

【运行结果】:

Rollen<===>20

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

Rollen<===>20

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

ChunGe<===>100

从运行结果来看,错乱的问题解决了,现在是Rollen 对应20,ChunGe对于100

,但是还是出现了重复读取的问题,也肯定有重复覆盖的问题。如果想解决这个问题,就需要使用Object类帮忙了、

,我们可以使用其中的等待和唤醒操作。

要完成上面的功能,我们只需要修改Info类饥渴,在其中加上标志位,并且通过判断标志位完成等待和唤醒的操作,代码如下:
view sourceprint?
001    class Info {
002         
003        public String getName() {
004            return name;
005        }
006    
007        public void setName(String name) {
008            this.name = name;
009        }
010    
011        public int getAge() {
012            return age;
013        }
014    
015        public void setAge(int age) {
016            this.age = age;
017        }
018    
019        public synchronized void set(String name, int age){
020            if(!flag){
021                try{
022                    super.wait();
023                }catch (Exception e) {
024                    e.printStackTrace();
025                }
026            }
027            this.name=name;
028            try{
029                Thread.sleep(100);
030            }catch (Exception e) {
031                e.printStackTrace();
032            }
033            this.age=age;
034            flag=false;
035            super.notify();
036        }
037         
038        public synchronized void get(){
039            if(flag){
040                try{
041                    super.wait();
042                }catch (Exception e) {
043                    e.printStackTrace();
044                }
045            }
046             
047            try{
048                Thread.sleep(100);
049            }catch (Exception e) {
050                e.printStackTrace();
051            }
052            System.out.println(this.getName()+"<===>"+this.getAge());
053            flag=true;
054            super.notify();
055        }
056        private String name = "Rollen";
057        private int age = 20;
058        private boolean flag=false;
059    }
060    
061    /**
062     * 生产者
063     * */
064    class Producer implements Runnable {
065        private Info info = null;
066    
067        Producer(Info info) {
068            this.info = info;
069        }
070    
071        public void run() {
072            boolean flag = false;
073            for (int i = 0; i < 25; ++i) {
074                if (flag) {
075                     
076                    this.info.set("Rollen", 20);
077                    flag = false;
078                } else {
079                    this.info.set("ChunGe", 100);
080                    flag = true;
081                }
082            }
083        }
084    }
085    
086    /**
087     * 消费者类
088     * */
089    class Consumer implements Runnable {
090        private Info info = null;
091    
092        public Consumer(Info info) {
093            this.info = info;
094        }
095    
096        public void run() {
097            for (int i = 0; i < 25; ++i) {
098                try {
099                    Thread.sleep(100);
100                } catch (Exception e) {
101                    e.printStackTrace();
102                }
103                this.info.get();
104            }
105        }
106    }
107    
108    /**
109     * 测试类
110     * */
111    class hello {
112        public static void main(String[] args) {
113            Info info = new Info();
114            Producer pro = new Producer(info);
115            Consumer con = new Consumer(info);
116            new Thread(pro).start();
117            new Thread(con).start();
118        }
119    }
view sourceprint?
01    【程序运行结果】:
02    Rollen<===>20
03    ChunGe<===>100
04    Rollen<===>20
05    ChunGe<===>100
06    Rollen<===>20
07    ChunGe<===>100
08    Rollen<===>20
09    ChunGe<===>100
10    Rollen<===>20
11    ChunGe<===>100
12    Rollen<===>20
13    ChunGe<===>100
14    Rollen<===>20
15    ChunGe<===>100
16    Rollen<===>20
17    ChunGe<===>100
18    Rollen<===>20
19    ChunGe<===>100
20    Rollen<===>20
21    ChunGe<===>100
22    Rollen<===>20
23    ChunGe<===>100
24    Rollen<===>20
25    ChunGe<===>100
26    Rollen<===>20
27    先在看结果就可以知道,之前的问题完全解决。
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值