1、编写2个接口:InterfaceA和InterfaceB;在接口InterfaceA中有个方法void printCapitalLetter();在接口InterfaceB中有个方法void printLowercaseLetter();然后写一个类Print实现接口InterfaceA和InterfaceB,要求printCapitalLetter()方法 实现输出大写英文字母表的功能,printLowercaseLetter()方法实现输出小写英文字母表的功能。再写一个主类E,在主类E的main方法中创建Print的对象并赋值给InterfaceA的变量a,对象a调用printCapitalLetter方法;最后再在主类E的main方法中创建Print的对象并赋值给InterfaceB的变量b,对象b调用printLowercaseLetter方法。
时间: 2023-12-28 20:03:36 浏览: 105
好的,以下是代码实现:
```java
// 定义接口InterfaceA
interface InterfaceA {
void printCapitalLetter();
}
// 定义接口InterfaceB
interface InterfaceB {
void printLowercaseLetter();
}
// 实现接口InterfaceA和InterfaceB的类Print
class Print implements InterfaceA, InterfaceB {
// 实现接口InterfaceA中的方法
public void printCapitalLetter() {
for (char c = 'A'; c <= 'Z'; c++) {
System.out.print(c + " ");
}
System.out.println();
}
// 实现接口InterfaceB中的方法
public void printLowercaseLetter() {
for (char c = 'a'; c <= 'z'; c++) {
System.out.print(c + " ");
}
System.out.println();
}
}
// 主类E
public class E {
public static void main(String[] args) {
// 创建Print的对象并赋值给InterfaceA的变量a,对象a调用printCapitalLetter方法
InterfaceA a = new Print();
a.printCapitalLetter();
// 创建Print的对象并赋值给InterfaceB的变量b,对象b调用printLowercaseLetter方法
InterfaceB b = new Print();
b.printLowercaseLetter();
}
}
```
输出结果为:
```
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
a b c d e f g h i j k l m n o p q r s t u v w x y z
```
阅读全文