zoukankan      html  css  js  c++  java
  • Action<T>泛型委托

    描述:

    封装一个方法,该方法只采用一个参数并且不返回值.

    语法:

    public delegate void Action<T>(T arg);

    T:

    参数类型:此委托封装的方法的参数类型

    arg:

    参数:此委托封装的方法的参数

    备注:

    通过此委托,可以将方法当做参数进行传递.

    其他形式:

    public delegate void Action<T1, T2>(T1 arg1, T2 arg2);
    public delegate void Action<T1, T2, T3>(T1 arg1, T2 arg2, T3 arg3);
    public delegate void Action<T1, T2, T3, T4>(T1 arg1, T2 arg2, T3 arg3, T4 arg4);

    例子:

    protected void Page_Load(object sender, EventArgs e)
    {
        List<int> list = new List<int>();
        list.AddRange(new int[] { 7, 6, 10, 1, 2, 3, 4, 5, 8 });
    
        Action<int> action = new Action<int>(AddFive);
        list.ForEach(action);
    
        //效果同
        //      Action<int> action = new Action<int>(AddFive);
        //      list.ForEach(action);
        //list.ForEach(x => Response.Write((x + 5).ToString() + "<br/>"));
    
        //效果同
        //      Action<int> action = new Action<int>(AddFive);
        //      list.ForEach(action);
        //list.ForEach(delegate(int i)
        //{
        //    HttpContext.Current.Response.Write((i + 5).ToString() + "<br/>");
        //});
    }
    
    public static void AddFive(int i)
    {
        HttpContext.Current.Response.Write((i + 5).ToString() + "<br/>");
    }

    结果:

    12
    11
    15
    6
    7
    8
    9
    10
    13

  • 相关阅读:
    css 三角形
    转盘
    使用history.back()出现"警告: 网页已过期的解决办法"
    jQuery 左侧滑动
    Go语言数组的使用
    Go的变量作用域
    Go语言中函数的实现
    Go语言循环判断的使用~
    Go基础
    go环境的安装~
  • 原文地址:https://www.cnblogs.com/oneword/p/1814020.html
Copyright © 2011-2022 走看看