鱼C论坛

 找回密码
 立即注册
查看: 3418|回复: 1

[技术交流] C#入门基础——使用new之后继承的区别

[复制链接]
发表于 2016-10-12 08:52:03 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
使用虚方法(virtual)和覆写(override)方法可以使基类的引用访问“升级”到派生类中。
而在最高继承使用了new之后,基类的引用不会再最高继承中出现,只能到最后一个覆写(override)方法中体现。

namespace 使用声明的虚方法和覆盖的实例
{
    class Program
    {
        static void Main(string[] args)
        {
            SecondDerived derived = new SecondDerived();   //实例化
            MyBaseClass mybc = derived;                    //强制转换成基类
            derived.Print();
            mybc.Print();
            Console.ReadKey();
        }
    }
    class MyBaseClass
    {
         virtual public void Print()         //虚方法
        {
            Console.WriteLine("This is the base class.");
        }
    }
    class MyDerivedClass : MyBaseClass       //派生类
    {
         override public void Print()        //覆写方法
        {
            Console.WriteLine("This is the derived class.");
        }
    }
    class SecondDerived : MyDerivedClass    //派生类
    {
        override public void Print()
        {
            Console.WriteLine("This is the second derived class.");
        }
    }
}
输出结果
This is the second derived class.
This is the second derived class.

namespace 使用new声明的虚方法和覆盖的实例
{
    class Program
    {
        static void Main(string[] args)
        {
            SecondDerived derived = new SecondDerived();   //实例化
            MyBaseClass mybc = derived;                    //强制转换成基类
            derived.Print();
            mybc.Print();
            Console.ReadKey();
        }
    }
    class MyBaseClass
    {
         virtual public void Print()         //虚方法
        {
            Console.WriteLine("This is the base class.");
        }
    }
    class MyDerivedClass : MyBaseClass       //派生类
    {
         override public void Print()        //覆写方法
        {
            Console.WriteLine("This is the derived class.");
        }
    }
    class SecondDerived : MyDerivedClass    //派生类
    {
        new public void Print()        //隐藏继承成员
        {
            Console.WriteLine("This is the second derived class.");
        }
    }
}

输出结果
This is the second derived class.
This is the derived class.

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-4-3 12:58:56 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 17:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表