通过实现Runnable接口实现多线程

//通过实现Runnable接口实现多线程
package 多线程;

class TestThread_01 implements Runnable
{
    public void run()
    {
        for(int i = 0 ; i < 10 ; i++)
        {
            System.out.println("TestThread_01在运行");
        }
    }
}
public class ThreadDemo_02 {
    public static void main(String[] args) {
        TestThread t = new TestThread();
        new Thread(t).start();//启动线程,即启动了run()方法
//        或者是下面的方法。一个实现了Runnable接口的类的对象,可以用它来创建多个线程
//        在Runnable接口中只有一个run()方法而没有start()方法。所以在实现了Runnable接口
//        也必须用Thread类的start()方法来启动多线程。Thread类中的构造方法为:
//        public Thread(Runnable target);将一个Runnable接口的实例化对象作为参数去实例化Thread
//        类对象。
//        TestThread t = new TestThread();
//        Thread thread1 = new Thread(t);
//        thread1.start();
//        Thread thread2 = new Thread(t);
//        thread2.start();
        for(int i = 0 ; i < 10 ; i++)
        {
            System.out.println("main在运行");
        }
    }
}
通过实现Runnable接口实现多线程 - 水到绝境是飞瀑 - 潜水的小企鹅
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值