interface在这段代码里是什么意思,

问题描述:

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,实现该接口的类都可以使用该变量