黑马程序员技术交流社区
标题:
关于内部类的问题?
[打印本页]
作者:
上帝的寵兒
时间:
2015-11-3 22:52
标题:
关于内部类的问题?
请看代码,该程序运行的结果为什么是 接口常量???
interface Inter {
public static final String s = "接口常量";
public abstract void method();
}
class SubEx implements Inter {
String s = "子类成员变量";
public void method(){
System.out.println("SubMethod");
}
}
class Demo {
public static void main (String[] args) {
Inter in = getInstance();
System.out.println(in.s);
function( in);
}
public static Inter getInstance(){
return new SubEx ();
}
public static void function (Inter in) {
in.method();
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2