我们的主类中有一个默认线程,但为什么我们在主类中不扩展线程类。是以某种方式包含 Thread 类的原因。
这就是我的意思,这是主要课程:
public class Test{
public static void main(String[] args) {
Thread.currentThread().getName();
}
}
我们使用默认线程,但是为什么一开始我们没有像这样扩展线程类?
public class Test extends Thread {
public static void main(String[] args) {
Thread.currentThread().getName();
}
}