首页 > 代码库 > Java代码输出是“father”还是“child”(一)
Java代码输出是“father”还是“child”(一)
1、实例
/** * 以下代码输出的结果是 */ package com.you.model; /** * @author YouHaidong * 输出的结果 */ public class FatherChild { /** * @param args */ @SuppressWarnings("static-access") public static void main(String[] args) { Father father = new Father(); Father child = new Child(); System.out.println(father.getName()); System.out.println(child.getName()); } } /** * * @author Administrator * 父类 */ class Father { public static String getName() { return "father"; } } /** * * @author Administrator * 子类 */ class Child extends Father { public static String getName() { return "child"; } }
2、输出结果
father
father
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。