命令模式的作用:将一个请求封装为一个对象,使发出请求的责任和执行请求的责任分割开。
JDK 中的线程 java.lang.Thread,使用了命令模式。
Thread 类的构造方法可以接收实现 Runnable 接口的对象,Runnable 的 run 方法可以理解为抽象命令,具体命令给程序员去实现。任务的接收与执行者是计算机的 CPU,任务的发起者是程序员。
public class Thread implements Runnable {
private Runnable target;
public Thread(Runnable target) {
init(null, target, "Thread-" + nextThreadNum(), 0);
}
// 可以被重写,执行任务
public void run() {
if (target != null) {
target.run();
}
}
// 线程启动,提交任务给 CPU
public synchronized void start() {
if (threadStatus != 0)
throw new IllegalThreadStateException();
group.add(this);
boolean started = false;
try {
start0();
started = true;
} finally {
try {
if (!started) {
group.threadStartFailed(this);
}
} catch (Throwable ignore) {
}
}
}
// 本地方法启动线程,提交任务给 CPU
private native void start0();
}
ConstXiong 备案号:苏ICP备16009629号-3