鱼C论坛

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

[技术交流] C#入门基础——虚方法和覆写方法实例

[复制链接]
发表于 2016-9-29 14:33:44 | 显示全部楼层 |阅读模式

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

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

x
当使用基类引用访问派生类对象时,得到的是基类的成员,虚方法可以使基类的引用访问“升至”派生类内。
使用基类引用调用派生类的方法,需要满足下面的条件
        派生类的方法和基类的方法有相同的签名和返回类型.
        基类的方法使用virtual标注.
        派生类的方法使用override标注.


/*   
    class MyBaseClass    基类
    {
    virtual public void Print()
    }
    class MyDerivdeClass:MyBaseClass   派生类
    {
    override public void Print()
    }
*/

namespace 虚方法和覆写方法实例
{
    class Program
    {
        static void Main(string[] args)
        {
            MyDerivedClass derived= new MyDerivedClass();
            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.");
        }
    }
}

输出结果:

This is the derived class.

This is the derived class.

本帖被以下淘专辑推荐:

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

使用道具 举报

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

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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