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

对于直接继承Thread的类来说,代码大致框架是:

  1. class 类名 extends Thread{
  2. 方法1;
  3. 方法2

  4. public void run(){
  5. // other code…
  6. }
  7. 属性1
  8. 属性2
  9.  
  10. }

先看一个简单的例子:

  1. /**
  2. * @author Rollen-Holt 继承Thread类,直接调用run方法
  3. * */
  4. class hello extends Thread {
  5.  
  6. public hello() {
  7.  
  8. }
  9.  
  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()方法。

当我们把上面的主函数修改为如下所示的时候:

  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的源代码的时候,会发现:

  1. public synchronized void start() {
  2. /**
  3. * This method is not invoked for the main method thread or "system"
  4. * group threads created/set up by the VM. Any new functionality added
  5. * to this method in the future may have to also be added to the VM.
  6. *
  7. * A zero status value corresponds to state "NEW".
  8. */
  9. 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接口:

大致框架是:

  1. class 类名 implements Runnable{
  2. 方法1;
  3. 方法2

  4. public void run(){
  5. // other code…
  6. }
  7. 属性1
  8. 属性2
  9.  
  10. }

来先看一个小例子吧:

  1. /**
  2. * @author Rollen-Holt 实现Runnable接口
  3. * */
  4. class hello implements Runnable {
  5.  
  6. public hello() {
  7.  
  8. }
  9.  
  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接口的:

  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/WuXuanKun/p/5770975.html

Thread和Runnable的区别:

如果一个类继承Thread,则不适合资源共享。但是如果实现了Runable接口的话,则很容易的实现资源共享。

  1. /**
  2. * @author Rollen-Holt 继承Thread类,不能资源共享
  3. * */
  4. class hello extends Thread {
  5. public void run() {
  6. for (int i = 0; i < 7; i++) {
  7. if (count > 0) {
  8. System.out.println("count= " + count--);
  9. }
  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接口

  1. class MyThread implements Runnable{
  2.  
  3. private int ticket = 5; //5张票
  4.  
  5. public void run() {
  6. for (int i=0; i<=20; i++) {
  7. if (this.ticket > 0) {
  8. System.out.println(Thread.currentThread().getName()+ "正在卖票"+this.ticket--);
  9. }
  10. }
  11. }
  12. }
  13. public class lzwCode {
  14.  
  15. public static void main(String [] args) {
  16. MyThread my = new MyThread();
  17. new Thread(my, "1号窗口").start();
  18. new Thread(my, "2号窗口").start();
  19. new Thread(my, "3号窗口").start();
  20. }
  21. }

【运行结果】:

count= 5

count= 4

count= 3

count= 2

count= 1

总结一下吧:

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

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

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

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

所以,本人建议大家劲量实现接口。

  1. /**
  2. * @author Rollen-Holt
  3. * 取得线程的名称
  4. * */
  5. class hello implements Runnable {
  6. public void run() {
  7. for (int i = 0; i < 3; i++) {
  8. System.out.println(Thread.currentThread().getName());
  9. }
  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实习在就是在操作系统中启动了一个进程。

判断线程是否启动

  1. /**
  2. * @author Rollen-Holt 判断线程是否启动
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for (int i = 0; i < 3; i++) {
  7. System.out.println(Thread.currentThread().getName());
  8. }
  9. }
  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

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

线程的强制执行:

  1. /**
  2. * @author Rollen-Holt 线程的强制执行
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for (int i = 0; i < 3; i++) {
  7. System.out.println(Thread.currentThread().getName());
  8. }
  9. }
  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

...

线程的休眠:

  1. /**
  2. * @author Rollen-Holt 线程的休眠
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for (int i = 0; i < 3; i++) {
  7. try {
  8. Thread.sleep(2000);
  9. } 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

线程的中断:

  1. /**
  2. * @author Rollen-Holt 线程的中断
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. System.out.println("执行run方法");
  7. try {
  8. Thread.sleep(10000);
  9. 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进程小时了,此后台线程依然能够继续运行。

  1. /**
  2. * @author Rollen-Holt 后台线程
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. while (true) {
  7. System.out.println(Thread.currentThread().getName() + "在运行");
  8. }
  9. }
  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. }

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

线程的优先级:

  1. /**
  2. * @author Rollen-Holt 线程的优先级
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for(int i=0;i<5;++i){
  7. System.out.println(Thread.currentThread().getName()+"运行"+i);
  8. }
  9. }
  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()方法,将一个线程的操作暂时交给其他线程执行。

  1. /**
  2. * @author Rollen-Holt 线程的优先级
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for(int i=0;i<5;++i){
  7. System.out.println(Thread.currentThread().getName()+"运行"+i);
  8. if(i==3){
  9. 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

同步和死锁:

【问题引出】:比如说对于买票系统,有下面的代码:

  1. /**
  2. * @author Rollen-Holt
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for(int i=0;i<10;++i){
  7. if(count>0){
  8. try{
  9. 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作为同步对象。

比如对于上面的买票的问题,如下:

  1. /**
  2. * @author Rollen-Holt
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for(int i=0;i<10;++i){
  7. synchronized (this) {
  8. if(count>0){
  9. 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 方法返回类型方法名(参数列表){

// 其他代码

}

现在,我们采用同步方法解决上面的问题。

  1. /**
  2. * @author Rollen-Holt
  3. * */
  4. class hello implements Runnable {
  5. public void run() {
  6. for (int i = 0; i < 10; ++i) {
  7. sale();
  8. }
  9. }
  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

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

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

【生产者和消费者问题】

先看一段有问题的代码。

  1. class Info {
  2.  
  3. public String getName() {
  4. return name;
  5. }
  6.  
  7. public void setName(String name) {
  8. this.name = name;
  9. }
  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)加入等待和唤醒

先来看看加入同步会是如何。

  1. class Info {
  2.  
  3. public String getName() {
  4. return name;
  5. }
  6.  
  7. public void setName(String name) {
  8. this.name = name;
  9. }
  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类饥渴,在其中加上标志位,并且通过判断标志位完成等待和唤醒的操作,代码如下:

  1. class Info {
  2.  
  3. public String getName() {
  4. return name;
  5. }
  6.  
  7. public void setName(String name) {
  8. this.name = name;
  9. }
  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. if(!flag){
  21. try{
  22. super.wait();
  23. }catch (Exception e) {
  24. e.printStackTrace();
  25. }
  26. }
  27. this.name=name;
  28. try{
  29. Thread.sleep(100);
  30. }catch (Exception e) {
  31. e.printStackTrace();
  32. }
  33. this.age=age;
  34. flag=false;
  35. super.notify();
  36. }
  37.  
  38. public synchronized void get(){
  39. if(flag){
  40. try{
  41. super.wait();
  42. }catch (Exception e) {
  43. e.printStackTrace();
  44. }
  45. }
  46.  
  47. try{
  48. Thread.sleep(100);
  49. }catch (Exception e) {
  50. e.printStackTrace();
  51. }
  52. System.out.println(this.getName()+"<===>"+this.getAge());
  53. flag=true;
  54. super.notify();
  55. }
  56. private String name = "Rollen";
  57. private int age = 20;
  58. private boolean flag=false;
  59. }
  60.  
  61. /**
  62. * 生产者
  63. * */
  64. class Producer implements Runnable {
  65. private Info info = null;
  66.  
  67. Producer(Info info) {
  68. this.info = info;
  69. }
  70.  
  71. public void run() {
  72. boolean flag = false;
  73. for (int i = 0; i < 25; ++i) {
  74. if (flag) {
  75.  
  76. this.info.set("Rollen", 20);
  77. flag = false;
  78. } else {
  79. this.info.set("ChunGe", 100);
  80. flag = true;
  81. }
  82. }
  83. }
  84. }
  85.  
  86. /**
  87. * 消费者类
  88. * */
  89. class Consumer implements Runnable {
  90. private Info info = null;
  91.  
  92. public Consumer(Info info) {
  93. this.info = info;
  94. }
  95.  
  96. public void run() {
  97. for (int i = 0; i < 25; ++i) {
  98. try {
  99. 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. }

【程序运行结果】:
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
ChunGe<===>100
Rollen<===>20
先在看结果就可以知道,之前的问题完全解决。

java的多线程总结的更多相关文章

  1. Java的多线程机制系列:不得不提的volatile及指令重排序(happen-before)

    一.不得不提的volatile volatile是个很老的关键字,几乎伴随着JDK的诞生而诞生,我们都知道这个关键字,但又不太清楚什么时候会使用它:我们在JDK及开源框架中随处可见这个关键字,但并发专 ...

  2. java之多线程 二

    线程的生命周期: 当线程被创建并被启动时,它既不是一启动就进入了执行状态,在线程的生命周期中,它要经过new(新建),就绪(Runnable),运行(Running),阻塞(Blocked),dead ...

  3. Java的多线程机制系列:(一)总述及基础概念

    前言 这一系列多线程的文章,一方面是个人对Java现有的多线程机制的学习和记录,另一方面是希望能给不熟悉Java多线程机制.或有一定基础但理解还不够深的读者一个比较全面的介绍,旨在使读者对Java的多 ...

  4. Java Thread 多线程 介绍

    1.线程概述 几乎所有的操作系统都支持同时运行多个任务,一个任务通常就是一个程序,每个运行中的程序就是一个进程. 当一个程序运行时,内部可能包含了多个顺序执行流,每个顺序执行流就是一个线程. 2.线程 ...

  5. Java:多线程<一>

    程序运行时,其实是CPU在执行程序的进程,为了提高工作效率一个进程可以有多个线程. Java的多线程: 其实我们之前就见过Java的线程,main就是Java的一个线程,还有另一个条线程总是和main ...

  6. Java的多线程机制系列:(四)不得不提的volatile及指令重排序(happen-before)

    一.不得不提的volatile volatile是个很老的关键字,几乎伴随着JDK的诞生而诞生,我们都知道这个关键字,但又不太清楚什么时候会使用它:我们在JDK及开源框架中随处可见这个关键字,但并发专 ...

  7. Java的多线程机制系列:(三)synchronized的同步原理

    synchronized关键字是JDK5之实现锁(包括互斥性和可见性)的唯一途径(volatile关键字能保证可见性,但不能保证互斥性,详细参见后文关于vloatile的详述章节),其在字节码上编译为 ...

  8. Java基础——多线程

    Java中多线程的应用是非常多的,我们在Java中又该如何去创建线程呢? http://www.jianshu.com/p/40d4c7aebd66 一.常用的有三种方法来创建多线程 新建一个类继承自 ...

  9. JAVA之多线程的创建

    转载请注明源出处:http://www.cnblogs.com/lighten/p/5967853.html 1.概念 老调重弹,学习线程的时候总会牵扯到进程的概念,会对二者做一个区分.网上有较多的解 ...

  10. Java基础--多线程的方方面面

    1,什么是线程?线程和进程的区别是什么? 2,什么是多线程?为什么设计多线程? 3,Java种多线程的实现方式是什么?有什么区别? 4,线程的状态控制有哪些方法? 5,线程安全.死锁和生产者--消费者 ...

随机推荐

  1. Kali Linux (XFce版本)安装后的一些设置

    kali Linux的主版本自带的是Gnome桌面环境,安装后使用效率太低,不知道是不是我机器配置低的原因, 在虚拟机里运行起来太慢.卡.丑啦....所以以前都一直都在用Backbox Linux,并 ...

  2. Linux新手扫盲

    一. Linux特点 1.免费/开源: 2.支持多线程/多用户: 3.安全性好: 4.对内存和文件管理优越. Linux最小只需4M ——> 嵌入式开发 二. 文件目录 Linux系统所有软硬件 ...

  3. SharePoint 2013 BCS

    http://liandove.blog.51cto.com/176335/1247410 http://liandove.blog.51cto.com/176335/1249339 http://l ...

  4. iOS tableviewcell 分割线 偏移和颜色

    改变颜色 [_hotProductsTableView setSeparatorColor : kSeparatorColor]; -(void)viewDidLayoutSubviews { [su ...

  5. OC 入门

    OC 入门 关键词正确写法: Xcode 错误的写法: xcode iPhone 错误的写法:IPhone iOS 错误的写法:IOS OC 全称: Objective-C 错误的写法:Object- ...

  6. IOS开发之自动布局--VFL语言

    前言:VFL是苹果公司为了简化Autolayout的编码而推出的抽象语言.对于纯代码发烧友,值得我们去学习和了解哦. 1.什么是VFL语言 VFL全称是Visual Format Language,翻 ...

  7. APNS远程推送(转发)

    /*****************************************2************************************************/ /****** ...

  8. 如何退出调起多个Activity的Application?

    1.记录打开的Activity 每打开一个activity,即记录下来,需要关闭时,关闭每一个activity即可. 2.发送特定的广播 在需要结束应用时,发送一个特定广播,每个activity收到此 ...

  9. MySQL 数据库双向镜像、循环镜像(复制)

    在MySQL数据库镜像的贴子中,主数据库A 的数据镜像到从数据库B,是单向的,Zen Cart网店的数据读写都必须在数据库A进行,结果会自动镜像到数据库B中.但是对数据库B的直接操作,不会影响数据库A ...

  10. asp.net mvc SelectList 的selected 失效及解决方案

    ViewData 名 不能和 绑定的 DropdownListFor的字段名 重复