实现Runnable接口创建线程

实现Runnable接口创建线程,第1张

实现Runnable接口创建线程
//创建线程:实现Runnable接口
public class MyThread implements Runnable {
    public void run(){
        for (int i = 1; i<=100; i++){
            System.out.println(Thread.currentThread().getName()+":"+i);
        }
    }

}

测试类

//测试线程
public class TestThread2 {
    public static void main(String[] args) {
        //创建线程对象
        Runnable runnable = new MyThread();
        Thread thread = new Thread(runnable,"Mythread1");
        Thread thread2 = new Thread(runnable,"Mythread2");
        //启动线程
        thread.start();
        thread2.start();
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5672126.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存