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

C#方法重载 -0024

时间:2020-06-15 22:46:36      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:支持   other   strong   another   ati   not   sha   方法   nta   

C#支持方法的重载:方法名相同,但是方法的参数或参数类型不同。

class ResultDisplayer
{
	public void DisplayResult(string result)
	{
		// implementation
	}

	public void DisplayResult(int result)
	{
		// implementation
	}
	public void DisplayResult(int result, int anotherResult)
	{
		// implementation
	}
}

注:方法名相同,然后下面两条满足其中一条即可

  • 方法的参数个数不同
  • 方法的参数个数相同,但参数的类型不同

C#方法重载 -0024

标签:支持   other   strong   another   ati   not   sha   方法   nta   

原文地址:https://www.cnblogs.com/codesee/p/13138099.html

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