博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多线程
阅读量:5103 次
发布时间:2019-06-13

本文共 2251 字,大约阅读时间需要 7 分钟。

1 两种方式创建多线程

1.1 第一种

  • 定义线程类实现Runnable接口
  • Thread myThread = new Thread(target) target为Runnable接口类型

  • Runnable中只有一个方法——public void run();用来定义线程运行体

  • 使用Runnable接口可以为多个线程提供共享的数据

  • 在实现Runnable接口类的run方法定义中可以使用Thread的静态方法——public static Thread currentThread() 获取当前线程的引用

public class TestThread {    public static void main(String args[]) {       Runner r = new Runner();              Thread t = new Thread(r);       t.start(); //线程启动              for(int i=0; i<100; i++) {           System.out.println("Main  Thread:------" + i);       }    }}class Runner implements Runnable {    public void run() {       for(int i=0; i<100; i++) {           System.out.println("Runner :" +  i);       }    }}

1.2 第二种

  • 可以定义一个Thread的子类并重写其run方法 class MyThread extends Thread{ public void run() {}}

  • 然后生成该类的对象 MyThread my Thread = new MyThread()

public class TestThread {    public static void main(String args[]) {       Runner r = new Runner();              r.start();                 for(int i=0; i<100; i++) {           System.out.println("Main  Thread:------" + i);       }    }}class Runner extends Thread {    public void run() {       for(int i=0; i<100; i++) {           System.out.println("Runner :" +  i);       }    }}

执行效果:Main 线程和Runner线程交叉 并行运行。

1161599-20190918215112545-1364431415.png

注:以extends继承方式创建线程,Runner不能再继承其他类。而以Runnable接口方式创建线程,可以继续继承其他类,不受约束。通常情况,使用接口方式创建线程。

2 t.start()线程启动和r.run()方法调用的区别

2.1 start()启动

start()启动Runner线程 两个线程并行执行

public class TestThread {    public static void main(String args[]) {       Runner r = new Runner();             r.start();    //线程启动              for(int i=0; i<100; i++) {           System.out.println("Main  Thread:------" + i);       }    }}class Runner extends Thread {    public void run() {       for(int i=0; i<100; i++) {           System.out.println("Runner :" +  i);       }    }}

1161599-20190918215403940-1015132742.png

2.2 run()

run()方法调用,Runner线程运行结束后Main线程才开始运行

public class TestThread {    public static void main(String args[]) {       Runner r = new Runner();       r.run();   //方法调用              for(int i=0; i<10; i++) {           System.out.println("Main  Thread:------" + i);       }    }}class Runner extends Thread {    public void run() {       for(int i=0; i<10; i++) {           System.out.println("Runner :" +  i);       }    }}

1161599-20190918215519982-603367980.png

转载于:https://www.cnblogs.com/eugene0/p/11545657.html

你可能感兴趣的文章
js forEach跳出循环
查看>>
MyBatis---动态SQL
查看>>
快速创建一个 spring mvc 示例
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
JVM-class文件完全解析-类索引,父类索引和索引集合
查看>>
Loj #139
查看>>
StringBuffer是字符串缓冲区
查看>>
hihocoder1187 Divisors
查看>>
java入门
查看>>
Spring 整合 Redis
查看>>
Azure 托管镜像和非托管镜像对比
查看>>
SQLite3初探
查看>>
多线程/多进程/异步IO
查看>>
leetcode 442. 数组中重复的数据 java
查看>>
struts2 文件上传下载注解示例
查看>>
编写一个简单的JAVA WEB Servlet页面
查看>>
JSP:Cookie实现永久登录(书本案例)
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>