线程循环-扩展线程类Java

时间:2019-06-27 00:57:10

标签: java multithreading runnable

我需要编写一个扩展Thread类的Application。我的类在实例化时接受一个整数(即100)。 (MyThread myt = new MyThread(100); ) 此整数将是此类循环并打印消息的次数。该消息应显示为“线程正在运行... 100”。 100是我传入构造函数的任何数字。如果数字为150,则输出应为“线程正在运行…100”。我应该使用main方法来测试此类。在主体中,我将启动2个线程,一个150个线程,一个200个线程。我不需要为此代码使用sleep()方法。

我已经写了一个代码,但是我很困惑。我的信息应该打印100次吗?我不确定我的代码是否满足所有要求。 我还应该实现将此类更改为使用Runnable Interface而不是Thread类的代码

public class MyThread extends Thread {

    private int numtimes;

    public MyThread(int numtimes) {
        this.numbtimes = numbtimes;

    }

    public void run() {

        for (int i = 0; i < numbtimes; i++) {
            System.out.println("Thread Running..." + numbtimes);

        }
    }

    public static void main(String[] args) {

        MyThread mytr1 = new MyThread(150);
        mytr1.start();

        MyThread mytr2 = new MyThread(200);
        mytr2.start();
    }

}

是问什么吗?您将如何使用Runnable Interface?

1 个答案:

答案 0 :(得分:1)

两种使用方式。其实是同一种。但我更喜欢lambda

public class StackOverFlowDemo {

/**
 * one
 * */
public static class MyRun implements Runnable {
    private int numtimes;

    public MyRun(int numtimes) {
        this.numtimes = numtimes;
    }

    @Override
    public void run() {
        for (int i = 0; i < numtimes; i++) {
            System.out.println(String.format("Thread(%s) Running... numtimes(%d), current count (%d) ",
                    Thread.currentThread().getName(),
                    numtimes, i));
        }
    }
}

/**
 * another way
 * */
public static void print(int numtimes) {
    for (int i = 0; i < numtimes; i++) {
        System.out.println(String.format("Thread(%s) Running... numtimes(%d), current count (%d) ",
                Thread.currentThread().getName(),
                numtimes, i));
    }
}

public static void main(String[] args) {
    /**
     * one
     * */
    Thread t1 = new Thread(new MyRun(150), "thread 1");
    Thread t2 = new Thread(new MyRun(200), "thread 2");
    t1.start();
    t2.start();

    /**
     * another way
     * */
    new Thread(() -> StackOverFlowDemo.print(150), "t1").start();
    new Thread(() -> StackOverFlowDemo.print(200), "t2").start();
}

}