分别用Thread、Runnable、Callable实现线程

Callable

  1. Callable和Runnable一样,但是Callable可以有返回值,可以捕获异常。
  2. 方法不同,run()。
public class ThreadByExtends extends Thread {
    private int i;

    @Override
    public void run() {
        //当线程类继承Thread类时,直接使用this即可获取当前线程句柄。
        // 因此可以直接调用getName()方法返回当前线程的名称。
        System.out.println("当前线程名称是:" + getName());
        for (; i < 5; i++) {
            System.out.println(getName() + ":" + i);
            try {//保证让别的线程也有执行的机会
                Thread.sleep(10);
            } catch (InterruptedException e) {
            }
        }
    }

    public static void main(String[] args) {
        //静态方法没有this,只能通过Thread.currentThread获取当前线程句柄
        System.out.println(Thread.currentThread().getName());
        //创建、并启动第一条线程
        new ThreadByExtends().start();
        //创建、并启动第二条线程
        new ThreadByExtends().start();
    }
}

继承Thread类创建线程类

public class ThreadByExtends extends Thread {
    private int i;

    @Override
    public void run() {
        //当线程类继承Thread类时,直接使用this即可获取当前线程句柄。
        // 因此可以直接调用getName()方法返回当前线程的名称。
        System.out.println("当前线程名称是:" +getName());for (; i < 5; i++) {
            System.out.println(getName()+ ":" +i);try{//保证让别的线程也有执行的机会
                Thread.sleep(10);
            }catch(InterruptedException e) {
            }
        }
    }

    public static void main(String[] args) {
        //静态方法没有this,只能通过Thread.currentThread获取当前线程句柄
        System.out.println(Thread.currentThread().getName());
        //创建、并启动第一条线程
        new ThreadByExtends().start();
        //创建、并启动第二条线程
        new ThreadByExtends().start();
    }
}

实现Runnable接口创建线程类

 通过实现Runnable接口来创建线程类

* 1.Runnable非常适合多个相同线程来处理同一份资源的情况

* 2.Runnable可以避免由于Java的单继承机制带来的局限

* 3.如果想获取当前线程句柄,只能用Thread.currentThread()方法*/

public class ThreadByRunnable implements Runnable {
    private int i;

    @Override
    public void run() {
        System.out.println("当前线程名称是:" + Thread.currentThread().getName());
        for (; i < 5; i++) {
            System.out.println(Thread.currentThread().getName() + ":" + i);
            try {
                //因为sleep是静态方法,所以不需要通过Thread.currentThread()方法获取当前线程句柄
                Thread.sleep(10);
            } catch (InterruptedException e) {
            }
        }
    }

    public static void main(String[] args) {
        ThreadByRunnable st = new ThreadByRunnable();
        new Thread(st, "新线程1").start();
        new Thread(st, "新线程2").start();
    }

}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值