using System;namespace 泛型委托{//求任意数组的最大值public delegate int DeleProcess<T>(T o1, T o2);class Program{static void Main(string[] args){int[] nums = new int[] { 1, 2, 3, 4, 5 };int max = GetMax(nums, (i
原文链接:http://blog.csdn.net/hongjunbj/article/details/8891387 1. function 我们知道,在C++中,可调用实体主要包括函数,函数指针,函数引用,可以隐式转换为函数指定的对象,或者实现了opetator()的对象(即C++98中的functor)。C++0x中,新增加了一个std::function对象,std::func