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

c#继承中的函数调用

时间:2014-12-23 10:27:02      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:c#   继承   虚函数   override   new   

   首先看下面的代码:

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();
		}
	}
}

看结果:

技术分享

从结果中可以看出:使用override重写之后,调用的函数是派生的最远的那个函数,使用new重写则是调用new之前的派生的最远的函数,即把new看做没有重写似的。



c#继承中的函数调用

标签:c#   继承   虚函数   override   new   

原文地址:http://blog.csdn.net/liujian619/article/details/42099223

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