文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Func Predicate 使用

Func Predicate 使用

时间:2011-04-10  来源:张土土

  class Program
{
List
<string> stringList = new List<string> {"abc","abcd","abcde","abcedf" };

static void Main(string[] args)
{
//Func的函数 是不能 使用 返回值为void 的函数
Func<string,string> del = (c) => { return c+"111"; };
Console.WriteLine(del(
"22"));
//打印出 长度大于3的字符串
GetString((c) => c.Length > 3);
Console.WriteLine();
//打印出以f结尾的
GetString((c)=>c.EndsWith("f"));
}
public static void GetString(Predicate<string> p)
{

Program pr
= new Program();
foreach(string str in pr.stringList)
{
if (p(str))//用p传进来的方法 去 看str是否满足
{
Console.WriteLine(str);
}
}
}


}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载