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

c#继承中的函数调用实例

时间:2017-12-07 00:00:53      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:模拟登陆   null   float   sts   div   base   style   turn   ase   

本文实例讲述了c#继承中的函数调用方法,分享给大家供大家参考。具体分析如下:

首先看下面的代码:


代码如下:

using System;

namespace Test

{

public class Base

{

public void Print()

{

Console.WriteLine(Operate(8, 4));

}

protected virtual int Operate(int x, int y)

{

return x + y;

}

}

}

namespace Test

{

public class OnceChild : Base

{

protected override int Operate(int x, int y)

{

return x – y;

}

}

}

namespace Test

{

public class TwiceChild : OnceChild

{

protected override int Operate(int x, int y)

{

return x * y;

}

}

}

namespace Test

{

public class ThirdChild : TwiceChild

{

}

}

namespace Test

{

public class ForthChild : ThirdChild

{

protected new int Operate(int x, int y)

{

return x / y;

}

}

}

namespace Test

{

class Program

{

static void Main(string[] args)

{

Base b = null;

b = new Base();

b.Print();

b = new OnceChild();

b.Print();

b = new TwiceChild();

b.Print();

b = new ThirdChild();

b.Print();

b = new ForthChild();

b.Print();

}

}

}

除声明外,跑步客文章均为原创,转载请以链接形式标明本文地址
  c#继承中的函数调用实例

本文地址:  http://www.paobuke.com/develop/c-develop/pbk23196.html






相关内容

c#继承中的函数调用实例

标签:模拟登陆   null   float   sts   div   base   style   turn   ase   

原文地址:http://www.cnblogs.com/paobuke/p/7994910.html

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