创建两个线程,要求如下: (1)一个线程输出100个1~26,另一个线程输出100个A~Z。 (2)一个线程使用集成Thread 类的写法,另一个线程使用实现Runnable接口的写法
时间: 2024-06-14 18:03:54 浏览: 184
以下是创建两个线程的示例代码:
1. 一个线程输出100个1~26,另一个线程输出100个A~Z
```java
class NumberThread extends Thread {
public void run() {
for (int i = 1; i <= 100; i++) {
System.out.print((char) (i % 26 + 64) + " ");
}
}
}
class LetterRunnable implements Runnable {
public void run() {
for (int i = 1; i <= 100; i++) {
System.out.print(i % 26 + 1 + " ");
}
}
}
public class Main {
public static void main(String[] args) {
NumberThread numberThread = new NumberThread();
Thread letterThread = new Thread(new LetterRunnable());
numberThread.start();
letterThread.start();
}
}
```
阅读全文