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

C#委托

时间:2014-10-20 23:19:16      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   使用   sp   div   on   cti   

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

namespace Delegate
{
    //1.定义委托
    public delegate int MyDelegate(int i, int j);
    public class Program
    {
        //2.申明委托
        //3.实例化委托
        public static MyDelegate sumDelegate = new MyDelegate(Sum);
        public static MyDelegate subDelegate = new MyDelegate(Sub);

        static void Main(string[] args)
        {
            //4.把委托对象作为参数
            MyFun(sumDelegate);
            MyFun(subDelegate);
            //5.使用委托(直接)
            int q = sumDelegate(5, 4);

            Console.ReadKey();
        }


        /****************************写入委托的方法***************************************/
        public static int Sum(int m, int n)
        {
            return m + n;
        }
        public static int Sub(int m, int n)
        {
            return m - n;
        }
        /****************************调用的方法**********************************************/
        public static void MyFun(MyDelegate de)
        {
            //5.使用委托(通过方法)
            int sb = de(3, 2);
            string str = "输出的结果是:";
            Console.WriteLine(str + sb.ToString());
        }
    }
}

  

C#委托

标签:blog   io   os   ar   使用   sp   div   on   cti   

原文地址:http://www.cnblogs.com/talentzemin/p/4038904.html

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