创建3个线程为Thread1Thread2Thread3 需要对一个数字进行递减操作 当数字递减到0的时候,输出“数字为0,结束递减”

多线程,对run方法内部进行一个同步运算。

以下是代码:

package 一般测试题;

public class 依次打印递增数字 {
    /**
     * 创建三个线程进行分段叠加
     * 每个线程叠加四次
     *
     */
    public static void main(String[] args) {
        new Thread(new Add(1)).start();
        new Thread(new Add(2)).start();
        new Thread(new Add(3)).start();

    }
}
class Add implements Runnable{
    //定义一个线程ID
    private int threadID;
    //需要进行叠加的数字
    private static int printNum = 9;
    //构造方法获取thread的ID
    public Add(int threadID){
        this.threadID = threadID;
    }
    @Override
    public void run() {
        while (printNum  >=0){
            synchronized (Add.class){
                System.out.println("当前的线程是:"+"---->"+threadID+"线程");
               int index = (printNum%3+1);//计算当前线程的数是和要对其操作的数来求得对应
                if(index == threadID){
                        System.out.println("线程"+threadID+":"+(printNum--));
                        if (printNum<0){
                            System.out.println("为0结束!");
                        }
                    Add.class.notifyAll();
                }else {
                    try {
                       Add.class.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }

    }
}

创建3个线程为Thread1Thread2Thread3 需要对一个数字进行递减操作 当数字递减到0的时候,输出“数字为0,结束递减”_第1张图片

创建3个线程为Thread1Thread2Thread3 需要对一个数字进行递减操作 当数字递减到0的时候,输出“数字为0,结束递减”_第2张图片

如果想用三个线性,依次的去输出a b c的话,可以试试以下的方式:

package 一般测试题;

public class 依次打印递增数字 {
    /**
     * 创建三个线程进行分段叠加
     * 每个线程叠加四次
     *
     */
    public static void main(String[] args) {
        new Thread(new Add(1)).start();
        new Thread(new Add(2)).start();
        new Thread(new Add(3)).start();

    }
}
class Add implements Runnable{
    //定义一个线程ID
    private int threadID;
    //需要进行叠加的数字
    private static int printNum = 9;
    String[] a={"a","c","b"};
    //构造方法获取thread的ID
    public Add(int threadID){
        this.threadID = threadID;
    }
    @Override
    public void run() {
        while (printNum  >=0){
            synchronized (Add.class){
                System.out.println("当前的线程是:"+"---->"+threadID+"线程");
               int index = (printNum%3+1);//计算当前线程的数是和要对其操作的数来求得对应
                if(index == threadID){
                        System.out.println("线程"+threadID+":"+(printNum--)+a[index-1]);
                        if (printNum<0){
                            System.out.println("为0结束!");
                        }
                    Add.class.notifyAll();
                }else {
                    try {
                       Add.class.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }

    }
}

创建3个线程为Thread1Thread2Thread3 需要对一个数字进行递减操作 当数字递减到0的时候,输出“数字为0,结束递减”_第3张图片

你可能感兴趣的:(初级篇---Java)