欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

实例代码讲解JAVA多线程

程序员文章站 2022-05-20 19:00:38
进程与线程进程是程序的一次动态执行过程,它需要经历从代码加载,代码执行到执行完毕的一个完整的过程,这个过程也是进程本身从产生,发展到最终消亡的过程。多进程操作系统能同时达运行多个进程(程序),由于 c...

进程与线程

进程是程序的一次动态执行过程,它需要经历从代码加载,代码执行到执行完毕的一个完整的过程,这个过程也是进程本身从产生,发展到最终消亡的过程。多进程操作系统能同时达运行多个进程(程序),由于 cpu 具备分时机制,所以每个进程都能循环获得自己的cpu 时间片。由于 cpu 执行速度非常快,使得所有程序好像是在同时运行一样。

多线程是实现并发机制的一种有效手段。进程和线程一样,都是实现并发的一个基本单位。线程是比进程更小的执行单位,线程是进程的基础之上进行进一步的划分。所谓多线程是指一个进程在执行过程中可以产生多个更小的程序单元,这些更小的单元称为线程,这些线程可以同时存在,同时运行,一个进程可能包含多个同时执行的线程。进程与线程的区别如图所示:

实例代码讲解JAVA多线程

java中线程实现的方式

在 java 中实现多线程有两种手段,一种是继承 thread 类,另一种就是实现 runnable 接口。下面我们就分别来介绍这两种方式的使用。

实现 runnable 接口

package ljz;
class mythread implements runnable{ // 实现runnable接口,作为线程的实现类
  private string name ;    // 表示线程的名称
  public mythread(string name){
    this.name = name ;   // 通过构造方法配置name属性
  }
  public void run(){ // 覆写run()方法,作为线程 的操作主体
    for(int i=0;i<10;i++){
      system.out.println(name + "运行,i = " + i) ;
    }
  }
};
public class runnabledemo01{
  public static void main(string args[]){
    mythread mt1 = new mythread("线程a ") ;  // 实例化对象
    mythread mt2 = new mythread("线程b ") ;  // 实例化对象
    thread t1 = new thread(mt1) ;    // 实例化thread类对象
    thread t2 = new thread(mt2) ;    // 实例化thread类对象
    t1.start() ;  // 启动多线程
    t2.start() ;  // 启动多线程
  }
};

程序运行结果:

实例代码讲解JAVA多线程

继承 thread 类

class mythread extends thread{ // 继承thread类,作为线程的实现类
  private string name ;    // 表示线程的名称
  public mythread(string name){
    this.name = name ;   // 通过构造方法配置name属性
  }
  public void run(){ // 覆写run()方法,作为线程 的操作主体
    for(int i=0;i<10;i++){
      system.out.println(name + "运行,i = " + i) ;
    }
  }
};
public class threaddemo02{
  public static void main(string args[]){
    mythread mt1 = new mythread("线程a ") ;  // 实例化对象
    mythread mt2 = new mythread("线程b ") ;  // 实例化对象
    mt1.start() ;  // 调用线程主体
    mt2.start() ;  // 调用线程主体
  }
};

程序运行结果:

实例代码讲解JAVA多线程

从程序可以看出,现在的两个线程对象是交错运行的,哪个线程对象抢到了 cpu 资源,哪个线程就可以运行,所以程序每次的运行结果肯定是不一样的,在线程启动虽然调用的是 start() 方法,但实际上调用的却是 run() 方法定义的主体。

thread 类和 runnable 接口

通过 thread 类和 runable 接口都可以实现多线程,那么两者有哪些联系和区别呢?下面我们观察 thread 类的定义。

public class thread extends object implements runnable

从 thread 类的定义可以清楚的发现,thread 类也是 runnable 接口的子类,但在thread类中并没有完全实现 runnable 接口中的 run() 方法,下面是 thread 类的部分定义。

private runnable target;
public thread(runnable target,string name){
  init(null,target,name,0);
}
private void init(threadgroup g,runnable target,string name,long stacksize){
  ...
  this.target=target;
}
public void run(){
  if(target!=null){
    target.run();
  }
}

从定义中可以发现,在 thread 类中的 run() 方法调用的是 runnable 接口中的 run() 方法,也就是说此方法是由 runnable 子类完成的,所以如果要通过继承 thread 类实现多线程,则必须覆写 run()。

实际上 thread 类和 runnable 接口之间在使用上也是有区别的,如果一个类继承 thread类,则不适合于多个线程共享资源,而实现了 runnable 接口,就可以方便的实现资源的共享。

线程的状态变化

要想实现多线程,必须在主线程中创建新的线程对象。任何线程一般具有5种状态,即创建,就绪,运行,阻塞,终止。下面分别介绍一下这几种状态:

1  创建状态

在程序中用构造方法创建了一个线程对象后,新的线程对象便处于新建状态,此时它已经有了相应的内存空间和其他资源,但还处于不可运行状态。新建一个线程对象可采用thread 类的构造方法来实现,例如 “thread thread=new thread()”。

2  就绪状态

新建线程对象后,调用该线程的 start() 方法就可以启动线程。当线程启动时,线程进入就绪状态。此时,线程将进入线程队列排队,等待 cpu 服务,这表明它已经具备了运行条件。

3  运行状态

当就绪状态被调用并获得处理器资源时,线程就进入了运行状态。此时,自动调用该线程对象的 run() 方法。run() 方法定义该线程的操作和功能。

4  阻塞状态

一个正在执行的线程在某些特殊情况下,如被人为挂起或需要执行耗时的输入/输出操作,会让 cpu 暂时中止自己的执行,进入阻塞状态。在可执行状态下,如果调用sleep(),suspend(),wait() 等方法,线程都将进入阻塞状态,发生阻塞时线程不能进入排队队列,只有当引起阻塞的原因被消除后,线程才可以转入就绪状态。

5  死亡状态

线程调用 stop() 方法时或 run() 方法执行结束后,即处于死亡状态。处于死亡状态的线程不具有继续运行的能力。

在此提出一个问题,java 程序每次运行至少启动几个线程?

回答:至少启动两个线程,每当使用 java 命令执行一个类时,实际上都会启动一个 jvm,每一个jvm实际上就是在操作系统中启动一个线程,java 本身具备了垃圾的收集机制。所以在 java 运行时至少会启动两个线程,一个是 main 线程,另外一个是垃圾收集线程。

取得和设置线程的名称

class mythread implements runnable{ //实现runnable接口
  public void run(){
    for(int i=0;i<3;i++){
      system.out.println(thread.currentthread().getname()+"运行, i="+i); //取得当前线程的名称
    }
 }
};

public class threaddemo{
public static void main(string args[]){
  mythread my=new mythread(); //定义runnable子类对象
  new thread(my).start;  //系统自动设置线程名称
  new thread(my,"线程a").start(); //手工设置线程名称
 }
};

程序运行结果:

实例代码讲解JAVA多线程

线程的操作方法

刚才在分析自定义模式工作原理的时候其实就已经提到了,如果想要更改glide的默认配

线程的强制运行

在线程操作中,可以使用 join() 方法让一个线程强制运行,线程强制运行期间,其他线程无法运行,必须等待此线程完成之后才可以继续执行。

class mythread implements runnable{ // 实现runnable接口
  public void run(){ // 覆写run()方法
    for(int i=0;i<50;i++){
      system.out.println(thread.currentthread().getname()
          + "运行,i = " + i) ; // 取得当前线程的名字
    }
  }
};
public class threadjoindemo{
  public static void main(string args[]){
    mythread mt = new mythread() ; // 实例化runnable子类对象
    thread t = new thread(mt,"线程");   // 实例化thread对象
    t.start() ; // 启动线程
    for(int i=0;i<50;i++){
      if(i>10){
        try{
          t.join() ; // 线程强制运行
        }catch(interruptedexception e){
        }
      }
      system.out.println("main线程运行 --> " + i) ;
    }
  }
};

程序运行结果:

实例代码讲解JAVA多线程

线程的休眠

在程序中允许一个线程进行暂时的休眠,直接使用 thread.sleep() 即可实现休眠。

class mythread implements runnable{ // 实现runnable接口
  public void run(){ // 覆写run()方法
    for(int i=0;i<50;i++){
      try{
        thread.sleep(500) ; // 线程休眠
      }catch(interruptedexception e){
      }
      system.out.println(thread.currentthread().getname()
          + "运行,i = " + i) ; // 取得当前线程的名字
    }
  }
};
public class threadsleepdemo{
  public static void main(string args[]){
    mythread mt = new mythread() ; // 实例化runnable子类对象
    thread t = new thread(mt,"线程");   // 实例化thread对象
    t.start() ; // 启动线程
  }
};

程序运行结果:

实例代码讲解JAVA多线程

中断线程

当一个线程运行时,另外一个线程可以直接通过interrupt()方法中断其运行状态。

class mythread implements runnable{ // 实现runnable接口
  public void run(){ // 覆写run()方法
    system.out.println("1、进入run()方法") ;
    try{
      thread.sleep(10000) ;  // 线程休眠10秒
      system.out.println("2、已经完成了休眠") ;
    }catch(interruptedexception e){
      system.out.println("3、休眠被终止") ;
      return ; // 返回调用处
    }
    system.out.println("4、run()方法正常结束") ;
  }
};
public class threadinterruptdemo{
  public static void main(string args[]){
    mythread mt = new mythread() ; // 实例化runnable子类对象
    thread t = new thread(mt,"线程");   // 实例化thread对象
    t.start() ; // 启动线程
    try{
      thread.sleep(2000) ;  // 线程休眠2秒
    }catch(interruptedexception e){
      system.out.println("3、休眠被终止") ;
    }
    t.interrupt() ; // 中断线程执行
  }
};

程序运行结果:

实例代码讲解JAVA多线程

后台线程

在 java 程序中,只要前台有一个线程在运行,则整个 java 进程都不会消失,所以此时可以设置一个后台线程,这样即使 java 线程结束了,此后台线程依然会继续执行,要想实现这样的操作,直接使用 setdaemon() 方法即可。

class mythread implements runnable{ // 实现runnable接口
  public void run(){ // 覆写run()方法
    while(true){
      system.out.println(thread.currentthread().getname() + "在运行。") ;
    }
  }
};
public class threaddaemondemo{
  public static void main(string args[]){
    mythread mt = new mythread() ; // 实例化runnable子类对象
    thread t = new thread(mt,"线程");   // 实例化thread对象
    t.setdaemon(true) ; // 此线程在后台运行
    t.start() ; // 启动线程
  }
};

在线程类 mythread 中,尽管 run() 方法中是死循环的方式,但是程序依然可以执行完,因为方法中死循环的线程操作已经设置成后台运行。

线程的优先级

在 java 的线程操作中,所有的线程在运行前都会保持在就绪状态,那么此时,哪个线程的优先级高,哪个线程就有可能会先被执行。

class mythread implements runnable{ // 实现runnable接口
  public void run(){ // 覆写run()方法
    for(int i=0;i<5;i++){
      try{
        thread.sleep(500) ; // 线程休眠
      }catch(interruptedexception e){
      }
      system.out.println(thread.currentthread().getname()
          + "运行,i = " + i) ; // 取得当前线程的名字
    }
  }
};
public class threadprioritydemo{
  public static void main(string args[]){
    thread t1 = new thread(new mythread(),"线程a") ; // 实例化线程对象
    thread t2 = new thread(new mythread(),"线程b") ; // 实例化线程对象
    thread t3 = new thread(new mythread(),"线程c") ; // 实例化线程对象
    t1.setpriority(thread.min_priority) ;  // 优先级最低
    t2.setpriority(thread.max_priority) ;  // 优先级最高
    t3.setpriority(thread.norm_priority) ; // 优先级最中等
    t1.start() ;  // 启动线程
    t2.start() ;  // 启动线程
    t3.start() ;  // 启动线程
  }
};

实例代码讲解JAVA多线程

从程序的运行结果中可以观察到,线程将根据其优先级的大小来决定哪个线程会先运行,但是需要注意并非优先级越高就一定会先执行,哪个线程先执行将由 cpu 的调度决定。

线程的礼让

在线程操作中,也可以使用 yield() 方法将一个线程的操作暂时让给其他线程执行

class mythread implements runnable{ // 实现runnable接口
  public void run(){ // 覆写run()方法
    for(int i=0;i<5;i++){
      try{
        thread.sleep(500) ;
      }catch(exception e){
      }
      system.out.println(thread.currentthread().getname()
          + "运行,i = " + i) ; // 取得当前线程的名字
      if(i==2){
        system.out.print("线程礼让:") ;
        thread.currentthread().yield() ;  // 线程礼让
      }
    }
  }
};
public class threadyielddemo{
  public static void main(string args[]){
    mythread my = new mythread() ; // 实例化mythread对象
    thread t1 = new thread(my,"线程a") ;
    thread t2 = new thread(my,"线程b") ;
    t1.start() ;
    t2.start() ;
  }
};

程序运行结果

实例代码讲解JAVA多线程

同步以及死锁

一个多线程的程序如果是通过 runnable 接口实现的,则意味着类中的属性被多个线程共享,那么这样就会造成一种问题,如果这多个线程要操作同一个资源时就有可能出现资源同步问题。

解决方法:

同步代码块

synchronized(同步对象){ 
 需要同步的代码 
 }
class mythread implements runnable{
  private int ticket = 5 ;  // 假设一共有5张票
  public void run(){
    for(int i=0;i<100;i++){
      synchronized(this){ // 要对当前对象进行同步
        if(ticket>0){  // 还有票
          try{
            thread.sleep(300) ; // 加入延迟
          }catch(interruptedexception e){
            e.printstacktrace() ;
          }
          system.out.println("卖票:ticket = " + ticket-- );
        }
      }
    }
  }
};
public class syncdemo02{
  public static void main(string args[]){
    mythread mt = new mythread() ; // 定义线程对象
    thread t1 = new thread(mt) ;  // 定义thread对象
    thread t2 = new thread(mt) ;  // 定义thread对象
    thread t3 = new thread(mt) ;  // 定义thread对象
    t1.start() ;
    t2.start() ;
    t3.start() ;
  }
};

程序运行结果:

实例代码讲解JAVA多线程

同步方法

除了可以将需要的代码设置成同步代码块外,也可以使用 synchronized 关键字将一个方法声明为同步方法。

synchronized 方法返回值 方法名称(参数列表){ 
 
 }
class mythread implements runnable{
  private int ticket = 5 ;  // 假设一共有5张票
  public void run(){
    for(int i=0;i<100;i++){
      this.sale() ;  // 调用同步方法
    }
  }
  public synchronized void sale(){  // 声明同步方法
    if(ticket>0){  // 还有票
      try{
        thread.sleep(300) ; // 加入延迟
      }catch(interruptedexception e){
        e.printstacktrace() ;
      }
      system.out.println("卖票:ticket = " + ticket-- );
    }

  }
};
public class syncdemo03{
  public static void main(string args[]){
    mythread mt = new mythread() ; // 定义线程对象
    thread t1 = new thread(mt) ;  // 定义thread对象
    thread t2 = new thread(mt) ;  // 定义thread对象
    thread t3 = new thread(mt) ;  // 定义thread对象
    t1.start() ;
    t2.start() ;
    t3.start() ;
  }
};

程序运行结果

实例代码讲解JAVA多线程

从程序运行的结果可以发现,此代码完成了与之前同步代码同样的功能。

死锁

同步可以保证资源共享操作的正确性,但是过多同步也会产生问题。例如,现在张三想要李四的画,李四想要张三的书,张三对李四说“把你的画给我,我就给你书”,李四也对张三说“把你的书给我,我就给你画”两个人互相等对方先行动,就这么干等没有结果,这实际上就是死锁的概念。

所谓死锁,就是两个线程都在等待对方先完成,造成程序的停滞,一般程序的死锁都是在程序运行时出现的。

下面以一个简单范例说明这个概念

class zhangsan{ // 定义张三类
  public void say(){
    system.out.println("张三对李四说:“你给我画,我就把书给你。”") ;
  }
  public void get(){
    system.out.println("张三得到画了。") ;
  }
};
class lisi{ // 定义李四类
  public void say(){
    system.out.println("李四对张三说:“你给我书,我就把画给你”") ;
  }
  public void get(){
    system.out.println("李四得到书了。") ;
  }
};
public class threaddeadlock implements runnable{
  private static zhangsan zs = new zhangsan() ;    // 实例化static型对象
  private static lisi ls = new lisi() ;    // 实例化static型对象
  private boolean flag = false ; // 声明标志位,判断那个先说话
  public void run(){ // 覆写run()方法
    if(flag){
      synchronized(zs){  // 同步张三
        zs.say() ;
        try{
          thread.sleep(500) ;
        }catch(interruptedexception e){
          e.printstacktrace() ;
        }
        synchronized(ls){
          zs.get() ;
        }
      }
    }else{
      synchronized(ls){
        ls.say() ;
        try{
          thread.sleep(500) ;
        }catch(interruptedexception e){
          e.printstacktrace() ;
        }
        synchronized(zs){
          ls.get() ;
        }
      }
    }
  }
  public static void main(string args[]){
    threaddeadlock t1 = new threaddeadlock() ;   // 控制张三
    threaddeadlock t2 = new threaddeadlock() ;   // 控制李四
    t1.flag = true ;
    t2.flag = false ;
    thread tha = new thread(t1) ;
    thread thb = new thread(t2) ;
    tha.start() ;
    thb.start() ;
  }
};

程序运行结果

实例代码讲解JAVA多线程

以下代码不再执行,程序进入死锁状态。

总结

至此关于多线程一些基本操作就介绍完了,鉴于笔者经验有限,如果有什么不足和缺漏的地方,欢迎相互交流学习,感谢大家!

以上就是实例代码讲解java多线程的详细内容,更多关于java多线程的资料请关注其它相关文章!