用java 编写 TestThread 类,通过继承 java.lang.Thread 实现多线程,线程体中打印线程名称。(22) 在 main()方法中创建 2 个线程对象并启动。
时间: 2024-03-10 16:50:10 浏览: 58
可以按照以下步骤来实现:
1. 创建一个类 TestThread,继承 java.lang.Thread。
2. 重写 run 方法,在方法中打印线程名称。
3. 在 main 方法中创建 2 个 TestThread 对象,并启动线程。
以下是示例代码:
```java
public class TestThread extends Thread {
public void run() {
System.out.println(Thread.currentThread().getName());
}
public static void main(String[] args) {
TestThread thread1 = new TestThread();
TestThread thread2 = new TestThread();
thread1.start();
thread2.start();
}
}
```
运行程序,可以看到输出了两个不同的线程名称,表示两个线程同时在执行。
阅读全文