Runnable是Thread的接口,在大多数情况下“推荐用接口的方式”生成线程,因为接口可以实现多继承,况且Runnable只有一个run方法,很适合继承。
在使用Thread的时候只需要new一个实例出来,调用start()方法即可以启动一个线程。
Thread Test = new Thread();
Test.start();
在使用Runnable的时候需要先new一个继承Runnable的实例,之后用子类Thread调用。
Test impelements Runnable
Test t = new Test();
Thread test = new Thread(t);
在某个题目里,需要分别打印出a与b各10次,并且每打印一次a睡1秒,打印一次b睡2秒。
可以在run方法外面定义String word与int time
之后用
Thread t1 = new Thread();
Thread t2 = new Thread();
t1.word = "a"
t1.time = 1000
t2.Word = "b"
t2.time = 2000
t1.start();
t2.start();
----Runnable的代码
class T implements Runnable{
String s = "";
int time = 0;
public void run (){
for (int i=0;i<10;i++) {
try {
Thread.sleep(time);
} catch (InterruptedException e) {
Thread.interrupted();
}
System.out.println(s);
}
}
}
public class Test {
public static void main(String[] args) {
T t1 = new T();
T t2 = new T();
t1.s = "a";
t1.time = 100;
t2.s = "b";
t2.time = 200;
Thread a = new Thread(t1);
a.start();
Thread b = new Thread(t2);
b.start();
}
}
你在做项目的时候,有的时候你必须要实现Runnable,而不能继承Thread。
原因很简单,因为java中,一个对象不能继承两个类,所以这个时候你只能去实现Runnable。
我在大多数时候都是继承Thread,感觉操作直来简单,好理解。
JAVA基础(多线程Thread和Runnable的使用区别
最新推荐文章于 2025-05-21 00:30:00 发布
本文对比了Java中Runnable接口和Thread类的使用方法,并通过一个简单的多线程打印例子展示了如何利用Runnable实现线程任务。文章还讨论了选择Runnable而非直接继承Thread的原因。
1163

被折叠的 条评论
为什么被折叠?



