共计 500 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以通过以下两种方式来实现 Runnable 接口:
- 创建一个类,实现 Runnable 接口,并重写 run() 方法。
public class MyRunnable implements Runnable {@Override
public void run() {// 在这里定义线程执行的任务
}
}
然后,可以将该类的实例传递给 Thread 类的构造函数,创建一个新的线程,并调用 start() 方法启动线程。
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();
- 使用匿名类实现 Runnable 接口。
Runnable myRunnable = new Runnable() {@Override
public void run() {// 在这里定义线程执行的任务
}
};
Thread thread = new Thread(myRunnable);
thread.start();
这种方式可以省略创建一个新的类,直接在创建 Thread 对象时实现 Runnable 接口的匿名类,并重写 run() 方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完