• C#抽象类


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    //抽象类的一个实例
    namespace Abstruct
    {
        abstract class Abclass
        { 
            public void IdentifyBase()
            {
                Console.WriteLine("I am  AbClass!");
            }
            abstract public void IdentifyDerived();
        }
        class DerivedClass :Abclass
        {
            override public void IdentifyDerived()
            {
                Console.WriteLine("I Am  DerivedClass");
            }
        }
        class Program
        {
            static void Main(string[] args)
            {
                DerivedClass dc = new DerivedClass();
                dc.IdentifyBase();
                dc.IdentifyDerived();
                Console.ReadKey();
            }
        }
    }
  • 相关阅读:
    [CF1106E] 边界有问题
    UOJ 67 新年的毒瘤
    BZOJ 1093 [ZJOI2007]最大半连通子图
    codeforces round#510
    codeforces round#509
    杂谈
    BZOJ 3007 [SDOI2012]拯救小云公主
    BZOJ 1799
    BZOJ 3329
    BZOJ 3209 花神的数论题
  • 原文地址:https://www.cnblogs.com/sulong/p/4793855.html
Copyright © 2020-2023  润新知