求JAVA大神,在线等答案 , 急急急 ,谢谢思密达~~~!!!
编写三个接口A,B,C,他们之间有继承关系,B继承A,C继承B,每个接口中包含一个常量字符串,编写一个类D实现接口C,并建立通过显示每个接口中常量字符串来展示接口的继承性...
编写三个接口A,B,C,他们之间有继承关系,B继承A,C继承B,每个接口中包含一个常量字符串,编写一个类D实现接口C,并建立通过显示每个接口中常量字符串来展示接口的继承性,最后再编写一个类E来创建D的对象,调用D的方法展示接口的继承性。
展开
3个回答
展开全部
代码比较长,如下,里面加了注释,赶紧抄上去吧。
interface A {
String a = "this is string A.";
}
interface B extends A {
String b = "this is string B.";
}
interface C extends B {
String c = "this is string C.";
}
class D implements C {
public void display() {
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}
class E {
public static void main(String[] args) {
// 显示每个接口中常量字符串来展示接口的继承性
System.out.println(D.a);
System.out.println(D.b);
System.out.println(D.c);
// 创建D的对象, 调用D的方法展示接口的继承性
D d = new D();
d.display();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public interface A {
public String a = "a";
}
public interface B extends A {
public String b = "b";
}
public interface C extends B {
public String c = "c";
}
public class D implements C {
public void showA() {
System.out.println(a);
}
public void showB() {
System.out.println(b);
}
public void showC() {
System.out.println(c);
}
}
public class E {
public static void main(String args[]) {
D d = new D();
d.showA();
d.showB();
d.showC();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你能把问题描述得这么清楚应该写得出来吧,学编程别偷懒
追问
大神 99 我吧,考完一定好好学习....
追答
public interface A {
public String A = "A";
}
public interface B extends A {
public String B ="B";
}
public interface C extends B {
public String C ="C";
}
public class D implements C {
public void test(){
System.out.println("interface A' constant "+A);
System.out.println("interface B' constant "+B);
System.out.println("interface C' constant "+C);
}
}
public class E {
public static void main(String[] args) {
D d = new D();
d.test();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询