C#中func的用法
C#3.5以后增加了func,不知道怎么用,很不理解,希望大侠们帮帮我,最好举个例子说明一下。小弟非常感谢~~...
C#3.5以后增加了func,不知道怎么用,很不理解,希望大侠们帮帮我,最好举个例子说明一下。小弟非常感谢~~
展开
展开全部
Func是一种委托,这是在3.5里面新增的,2.0里面我们使用委托是用Delegate,Func位于System.Core命名空间下,使用委托可以提升效率,例如在反射中使用就可以弥补反射所损失的性能。
Func<T,TResult> 的表现形式分为以下几种:
1。Func<T,TResult>
2。Func<T,T1,TResult>
3。Func<T,T1,T2,TResult>
4。Func<T,T1,T2,T3,TResult>
5。Func<T,T1,T2,T3,T4,TResult>
TResult表示 委托所返回值 所代表的类型, T,T1,T2,T3,T4表示委托所调用的方法的参数类型。
Func<T,TResult> 的表现形式分为以下几种:
1。Func<T,TResult>
2。Func<T,T1,TResult>
3。Func<T,T1,T2,TResult>
4。Func<T,T1,T2,T3,TResult>
5。Func<T,T1,T2,T3,T4,TResult>
TResult表示 委托所返回值 所代表的类型, T,T1,T2,T3,T4表示委托所调用的方法的参数类型。
追问
这个看过了,你Ctrl+C Ctrl+V的吧
追答
我也是跟他学的,英文的我看不懂。觉得他总结的挺简单。
你自己看看原版的吧:http://msdn.microsoft.com/zh-cn/library/bb534960.aspx
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FuncDemo
{
class Program
{
static void Main(string[] args)
{
//类似委托功能
Func<string, int> test = TsetMothod;
Console.WriteLine(test("123"));
Func<string, int> test1 = TsetMothod;
//只需要调用这个类就可以减少重复的代码
CallMethod<string>(test1,"123");
//或者采用这种
CallMethod<string>(new Func<string, int>(TsetMothod), "123");
CallMethod(new Func<string, int>(TsetMothod), "123");
}
public static int TsetMothod(string name)
{
if (string.IsNullOrEmpty(name))
{
return 1;
}
return 0;
}
//改造经常出现类似代码下面
//try
//{
////Do();只有这个方法改变
//}
//catch (System.Exception ex)
//{
// //Log(e);
//}
//finally
//{
////DoOther();
//}
//
public static void CallMethod<T>(Func<T,int> func,T item)
{
try
{
int i= func(item);
Console.WriteLine(i);
}
catch(Exception e)
{
}
finally
{
}
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FuncDemo
{
class Program
{
static void Main(string[] args)
{
//类似委托功能
Func<string, int> test = TsetMothod;
Console.WriteLine(test("123"));
Func<string, int> test1 = TsetMothod;
//只需要调用这个类就可以减少重复的代码
CallMethod<string>(test1,"123");
//或者采用这种
CallMethod<string>(new Func<string, int>(TsetMothod), "123");
CallMethod(new Func<string, int>(TsetMothod), "123");
}
public static int TsetMothod(string name)
{
if (string.IsNullOrEmpty(name))
{
return 1;
}
return 0;
}
//改造经常出现类似代码下面
//try
//{
////Do();只有这个方法改变
//}
//catch (System.Exception ex)
//{
// //Log(e);
//}
//finally
//{
////DoOther();
//}
//
public static void CallMethod<T>(Func<T,int> func,T item)
{
try
{
int i= func(item);
Console.WriteLine(i);
}
catch(Exception e)
{
}
finally
{
}
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询