码迷,mamicode.com
首页 > Windows程序 > 详细

C#中的继承与覆盖

时间:2017-07-12 10:18:22      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:导入   err   generic   main   write   ons   工具   virtual   collect   

原文发布时间为:2009-03-03 —— 来源于本人的百度文章 [由搬家工具导入]

//using System;
//using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
   public class Program
    {
       public static void Main()
        {
            Parent p = new Son();//输出 A from Parent! B from Son! 若改成Parent p = new Parent();那输出的都是A from Parent! B from Parent!
            p.A();
            p.B();
            Console.ReadLine();
        }
    }

    class Parent
    {
       public void A()
        {
            Console.WriteLine("A from Parent!");
        }
      public virtual void B()
        {
            Console.WriteLine("B from Parent!");
        }
    }

    class Son : Parent
    {
      public new void A()
        {
            Console.WriteLine("A from Son!");
        }
      public override void B()
        {
            Console.WriteLine("B from Son!");
        }
    }
}

C#中的继承与覆盖

标签:导入   err   generic   main   write   ons   工具   virtual   collect   

原文地址:http://www.cnblogs.com/handboy/p/7153253.html

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