编写两个线程类,一个线程打印26个英文字母,另一个线程打印1~26的数字。用Java写个代码我看看
时间: 2023-06-03 09:07:25 浏览: 106
java代码-3线程输出26个英文
5星 · 资源好评率100%
好的,这是Java的代码实现:
```
class LetterThread extends Thread {
public void run() {
for(char c = 'A'; c <= 'Z'; c++) {
System.out.print(c + " ");
}
}
}
class NumberThread extends Thread {
public void run() {
for(int i = 1; i <= 26; i++) {
System.out.print(i + " ");
}
}
}
public class Main {
public static void main(String[] args) {
LetterThread letterThread = new LetterThread();
NumberThread numberThread = new NumberThread();
letterThread.start();
numberThread.start();
}
}
```
这里定义了两个线程类 LetterThread 和 NumberThread,分别打印出英文字母和数字。在 Main 类中创建了这两个线程并启动它们。通过使用线程来同时输出英文字母和数字,易于理解和实现。
阅读全文