Java多线程三:Runnable接口

Java多线程Runnable接口


介绍

Runnable接口只定义了一个run()方法,任何实现类该接口的实例对象都应该实现run方法。

Runnable从字面意思上来看,表示其具备可运行能力。


The Runnable interface should be implemented by any class whose instances are intended to be executed by a thread.  
The class must define a method of no arguments called run.


This interface is designed to provide a common protocol for objects that wish to executewhile they are active.  
For example,Runnable is implemented by class Thread Being active simply means that a thread  
has been started and has not yet been stopped.

使用

定义一个线程类

/**
 * 
 * @author xuyi
 * @Time 2016年8月9日 下午9:22:19
 * @类名 SomeThread
 * @功能描述:
 * @春风十里不如你
 * @备注:
 */
public class SomeThread implements Runnable {

    @Override
    public void run() {

        // 实际业务逻辑代码

    }
}   
//定义线程类非常的简单

启动线程

public static void main(String[] args) {
    // 新建一个线程对象
    SomeThread someThread = new SomeThread();
    // 启动一个线程执行someThread
    new Thread(someThread).start();
    new Thread(someThread).start();
}

//实现Runnable接口的线程类需要借助Thread来启动多线程

参考

1、[JDK 源码](JDK 源码 “JDK源码”)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值