创建多线程方式二

package com.www.java01;

/**
 * 创建多线程方式二:实现Runnable接口
 * 1.创建一个实现Runnable接口的类
 * 2.实现接口中的抽象方法:run方法
 * 3.创建实现类的对象
 * 4.将此对象作为参数传递给Thread类的构造器中,创建Thread类的对象
 * 5.通过Thread类的对象调用start
 *
 * @author www
 * @creat 2022-{MONTH}-{DAY}
 */
//1.创建一个实现Runnable接口的类
class SubThread4 implements Runnable{
    //2.实现接口中的抽象方法:run方法
    @Override
    public void run() {
        for(int i = 0; i < 100;i++){
            if(i % 2 == 0){
                System.out.println(i);
            }
        }
    }
}


public class ThreadTest1 {
    public static void main(String[] args) {
        //3.创建实现类的对象
        SubThread4 st = new SubThread4();
        //4.将此对象作为参数传递给Thread类的构造器中,创建Thread类的对象
        Thread t = new Thread(st);
        //5.通过Thread类的对象调用start
        t.start();
    }

}

//再启动一个线程,遍历100以内偶数
        Thread t1 = new Thread(st);
        t1.start();
package com.www.java02;

/**
 * 例子:创建三个窗口卖票,总共一百张,使用实现Runnable接口方式
 * @author www
 * @creat 2022-{MONTH}-{DAY}
 */
class MyThread1 implements Runnable{
    private int sum = 100;
    @Override
    public void run() {
        while(true){
            if(sum > 0){
                System.out.println(Thread.currentThread().getName() + "卖票:" + sum);
                sum--;
            }else break;
        }
    }
}
public class WindowTest1 {

    public static void main(String[] args) {
        MyThread1 mt = new MyThread1();
        Thread t1 = new Thread(mt);
        t1.setName("线程一");
        Thread t2 = new Thread(mt);
        t2.setName("线程二");
        Thread t3 = new Thread(mt);
        t3.setName("线程三");
        t1.start();
        t2.start();
        t3.start();


    }
}

这里sum没有static,因为这里三个线程操作一个对象
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

新手学java2021

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

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

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

打赏作者

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

抵扣说明:

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

余额充值