早教吧 育儿知识 作业答案 考试题库 百科 知识分享

interface在这段代码里是什么意思,下面的程序编译运行后的输出结果是()publicclassTestimplementsA{intx=10;publicstaticvoidmain(Stringargs[]){Testc1=newTest();System.out.println(c1.x+A.k);}}interfaceA{intk=

题目详情
interface在这段代码里是什么意思,
下面的程序编译运行后的输出结果是( )
public class Test implements A {
int x=10;
public static void main(String args[]) {
Test c1 = new Test();
System.out.println(c1.x+A.k);
}
}
interface A {
intk= 10;
}
▼优质解答
答案和解析
输出应该是20
Test类实现了一个A接口,接口A中包含了一个变量k,实现该接口的类都可以使用该变量