码迷,mamicode.com
首页 > 其他好文 > 详细

委托的理解

时间:2016-04-28 10:37:47      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace ConsoleApplication1
{

class Program
{
//项目经理给出要求让几个程序员完成以下功能:
//将两个字符串联合为一个,提供给自己调用
delegate string methodDelegate(string s1,string s2);
static void Main(string[] args)
{
//项目经理调用程序员A写的方法
//声明:我要调用其他人写的代理(委托)方法
methodDelegate delA = new methodDelegate(new ChengxuyuanA().ConnStrA);
//输出
Console.WriteLine(delA("123","456"));

//项目经理也可以调用程序员B写的方法
methodDelegate delB = new methodDelegate(new ChengxuyuanB().ConnStrB);
Console.WriteLine(delB("123","456"));

Console.ReadKey();
}
}


//程序员A开始写的类以及实现方法
public class ChengxuyuanA
{
//方法
public string ConnStrA(string s1, string s2)
{
return s1 + s2;
}
}
//程序员B写的类和方法
public class ChengxuyuanB
{
//方法实现可不一样
public string ConnStrB(String str1,string str2)
{
return str1 + str2;
}
}

}

委托的理解

标签:

原文地址:http://www.cnblogs.com/cnshuji/p/5441683.html

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