黑马程序员技术交流社区
标题: 小问题6(不喜勿看,谢谢) [打印本页]
作者: 繁华落幕 时间: 2015-6-22 22:30
标题: 小问题6(不喜勿看,谢谢)
本帖最后由 繁华落幕 于 2015-6-24 22:25 编辑
给出以下代码,请问该程序的运行结果是什么?如有问题,请说明原因。
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();
}
}
作者: 改变 时间: 2015-6-23 10:01
结果是 接口常量,SubMethod吗?
作者: Matrix_heima 时间: 2015-6-23 10:21
结果是 接口常量,SubMethod
作者: fanxin_meng 时间: 2015-6-23 12:10
看看 看看
作者: 划落间 时间: 2015-6-23 12:49
用手机看的,全是字母,头疼,不看了。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |