多线程的两种实现方式

多线程的两种实现方式

第一种方式:

1.创建一个类继承Thread;
2.在类里重写run方法,在方法里编写你需要的逻辑;
3.创建类对象;
4.调用start()方法,启动线程.

public class TextThread1 {
 
    public static void main(String[] args) {
    //创建类对象
        thread youthread = new thread();
        thread1 youthread1 = new thread1();
        //调用start()方法,启动线程
        youthread.start();
        youthread1.start();
    }
}
//创建一个类thread继承Thread,
class thread extends Thread{
//重写run方法
    @Override
    public void run() {
        for (int i = 1; i <=100 ; i++) {
            System.out.println("360文件读取速度为:"+i+"%");
        }
    }
}
//创建一个类thread1继承Thread
class thread1 extends Thread{
//重写run方法
    @Override
    public void run() {
        for (int i = 0; i <=100 ; i++) {
            System.out.println("王者荣耀文件下载速度:"+i+"%");
        }
    }
}

第二种方式(实现Runnable接口):

1.定义一个类实现Runnable接口;
2.在类中重写run()方法;
3.创建实现类的对象;
4.创建Thread类的对象,把实现类对象作为构造方法的参数;
5.调用start()方法,启动线程.

public class TextRunnable {
 
    public static void main(String[] args) {
        System.out.println("凯迪拉克追爱情:");
        //创建task类的对象
        task taskOne = new task();
        //创建Thread类的对象,把task对象作为构造方法的参数,后面是线程名称
        Thread thread = new Thread(taskOne,"男孩驾驶的凯迪拉克");
        Thread thread1 = new Thread(taskOne, "女孩乘坐的高铁");
        
        //启动线程
        thread.start();
        thread1.start();
    }
}

//定义一个类task实现Runnab1e接口
class task implements Runnable{
//重写run()方法
    @Override
    public void run() {
        for (int i = 0; i <= 100; i++) {
        //调用Thread类的currentThread()方法是返回线程名称
            System.out.println(Thread.currentThread().getName() + "行驶了" + i + "公里");
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

清淡的粥

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值