Java 创建线程


创建线程

  • 线程也是一种对象,只有实现了 Runnable 接口或者继承了 Thread 类的对象才能成为线程;
  • 创建线程有四种方式:继承 Thread 类、实现 Runnable 接口、创建 Runnable 实现类、Callable 测试接口;

1. 继承 Thread 类

  • run() 方法时定义在 Thread 类中的一个方法;
  • 要启动线程必须调用 Thread 类中的 start() 方法,而调用了 start() 方法,也就调用了 run() 方法;
  • java.lang.Thread,详见:Class Thread
class ThreadTest extends Thread {//从Thread类扩展出子类
    public void run() {//覆写Thread类中的run()方法
        for (int i = 0; i < 3; i++) {
            System.out.println("TestThread 在运行");
        }
    }
}

public class Test {
    public static void main(String args[]) {
        new ThreadTest().start();
        for (int i = 0; i < 3; i++) {
            System.out.println("main 线程在运行");
        }
    }
}
/*
输出
main 线程在运行
main 线程在运行
main 线程在运行
TestThread 在运行
TestThread 在运行
TestThread 在运行
 */

2. 实现 Runnable 接口

  • Java 只允许单一继承,如果一个类继承了某一个类,同时又要采用多线程技术,就不能用 Thread 类产生线程,这时要用 Runnable 接口来创建线程;
  • 用 start() 启动多线程,因为 Runnable 接口中只有一个 run() 方法,所以实现类必须用 Thread 类中的 start() 来启动多线程,Thread 类中存在这种构造方法 public Thread(Runnable target)
  • 在实际开发中尽量使用 Runnable 去实现多线程机制;
  • java.lang,详见:Interface Runnable
class TestThread implements Runnable {
    public void run() {
        for (int i = 0; i < 3; i++) {
            System.out.println("TestThread 在运行");
        }
    }
}

public class Test {
    public static void main(String args[]) {
        TestThread t = new TestThread();
        new Thread(t).start();
        for (int i = 0; i < 3; i++) {
            System.out.println("main 线程在运行");
        }
    }
}
/*
输出
main 线程在运行
main 线程在运行
main 线程在运行
TestThread 在运行
TestThread 在运行
TestThread 在运行
 */

a. 匿名内部类方式

  • 使用线程的内匿名内部类方式,可以方便的实现每个线程执行不同的线程任务操作;
  • 使用匿名内部类的方式实现 Runnable 接口,重写 Runnable 接口中的 run 方法:
public class Test {
    public static void main(String[] args) {
        // new Runnable(){
            // public void run(){
                // for (int i = 0; i < 20; i++) {
                // System.out.println("张宇:"+i);
                // }
            // }
        // }; //---这个整体 相当于new MyRunnable()
        Runnable r = new Runnable() {
            public void run() {
                for (int i = 0; i < 20; i++) {
                    System.out.println("张宇:" + i);
                }
            }
        };
        new Thread(r).start();
        for (int i = 0; i < 20; i++) {
            System.out.println("费玉清:" + i);
        }
    }
}

3. Runnable 实现类和 Callable 测试接口

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值