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

c#隐藏和重写基类方法的区别

时间:2015-11-30 21:58:58      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:

c#隐藏和重写基类方法的区别

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace interfaceInfo
{
    public class animal
    {
        public void action()
        {
            Console.WriteLine("eat sleep fuck");
        }

        public virtual void show()
        {
            Console.WriteLine("show...");
        }
    }
    public class dog : animal
    {
        public new void action()
        {
            Console.WriteLine("new...");
        }

        public override void show()
        {
            Console.WriteLine("override");
        } 



    }
    class Program
    {
        static void Main(string[] args)
        {
            dog d = new dog();
            d.action();  //new...
            d.show();   //override

            Console.ReadLine();

            animal an = new dog();
            an.action();  //  eat sleep fuck
            an.show();    //  override

            Console.ReadLine();
           
        }
    }
}

 

c#隐藏和重写基类方法的区别

标签:

原文地址:http://www.cnblogs.com/mc67/p/5008370.html

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