資源簡(jiǎn)介
課程“Accp6.0_S2.使用Java實(shí)現(xiàn)面向?qū)ο缶幊獭鳖}庫(kù)試題匯編
interface A{
int x=0;
}
class B{
int x=1;
}
public class C extends B implements A{
public void pX(){
System.out.println(super.x);
}
public static void main(String[] args){
new C().pX();
}