码迷,mamicode.com
首页 > 其他好文 > 详细

11.13

时间:2017-11-20 01:12:42      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:extends   this   ret   super   name   sel   str   abstract   self   

package top.hyself;

abstract class A{
    private String name;
    public A(String name)
{ this.name = name; } public String getName()
{ return this.name;
} public abstract void fun(); } class B extends A{ public B(String name) { super(name); } public void fun() { System.out.println(super.getName()); } } public class This { public static void main(String[] args)
{ B b = new B(null); b.fun(); } }

11.13

标签:extends   this   ret   super   name   sel   str   abstract   self   

原文地址:http://www.cnblogs.com/ELF-CH/p/7862993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!