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

  • 相关阅读:
    mybatis mybatis-generator 代码自动生成工具使用
    spring初步
    spring基于xml和注解配置事务
    强软弱虚四大引用
    线程通信的几种实现方式
    java8新特性之方法引用和构造器引用
    JAVA四大内置函数
    JAVA四大内置函数
    JSR303的使用
    设计模式之建造者模式
  • 原文地址:https://www.cnblogs.com/oneword/p/1814020.html
Copyright © 2011-2022 走看看