11.13

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11.13相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

11.13

11.13 第十二次

11.13

ybtoj 11.13 S组贪心B. 字典之序

ybtoj 11.13 S组暴力A. 他的世界

JS 11.13