JAVA题目:创建两个线程,要求如下: (1)一个线程输出100个1~26,另一个线程输出100个A~Z。 (2)一个线程使用集成Thread 类的写法,另一个线程使用实现Runnable接口的写法。 输出格式: 每一行输出一个1~26数字或者是A~Z的字符
时间: 2024-06-14 07:04:10 浏览: 119
3. 高频面试题-多线程-8519255158581495.md
以下是满足要求的JAVA代码示例:
使用继承Thread类的写法:
```java
class NumberThread extends Thread {
public void run() {
for (int i = 1; i <= 100; i++) {
System.out.print(i + " ");
if (i % 2 == 0) {
System.out.print("\n");
}
}
}
}
class LetterThread extends Thread {
public void run() {
for (char c = 'A'; c <= 'Z'; c++) {
System.out.print(c + " ");
if (c % 2 == 1) {
System.out.print("\n");
}
}
}
}
public class Main {
public static void main(String[] args) {
NumberThread numberThread = new NumberThread();
LetterThread letterThread = new LetterThread();
numberThread.start();
letterThread.start();
}
}
```
使用实现Runnable接口的写法:
```java
class NumberRunnable implements Runnable {
public void run() {
for (int i = 1; i <= 100; i++) {
System.out.print(i + " ");
if (i % 2 == 0) {
System.out.print("\n");
}
}
}
}
class LetterRunnable implements Runnable {
public void run() {
for (char c = 'A'; c <= 'Z'; c++) {
System.out.print(c + " ");
if (c % 2 == 1) {
System.out.print("\n");
}
}
}
}
public class Main {
public static void main(String[] args) {
Thread numberThread = new Thread(new NumberRunnable());
Thread letterThread = new Thread(new LetterRunnable());
numberThread.start();
letterThread.start();
}
}
```
阅读全文