首页 > 其他 > 详细

C# 预计算和缓存示例之一

时间:2014-07-12 14:13:31      阅读:306      评论:0      收藏:0      [点我收藏+]
  //预计算和缓存示例
        static void Main(string[] args)
        {
            //第一种方法
            var add = CalcFunc();

            Console.WriteLine(add(10)(20));

            var add30 = add(30);
            var add40 = add30(40);

            Console.WriteLine(add40);

            Console.Read();

        }

        // 定义函数,返回一个调用函数
        static Func<int, Func<int, int>> CalcFunc()
        {
            return x =>
            {
                return y => x + y;
            };
        }

  

 //预计算和缓存示例
        static void Main(string[] args)
        {
         
            List<string > list  = new List<string>();

            list.Add("one");
            list.Add("two");
            list.Add("three");
            list.Add("four");

            var fun1 = FindStr(list);

            Console.WriteLine(fun1("two"));

            Console.Read();

        }


        //作用缓冲
        static Func<string , bool> FindStr(List<string > lst)
        {
            HashSet<string > hsSet = new HashSet<string >(lst);

            return item =>
            {
                return hsSet.Contains(item);
            };
        }

 

C# 预计算和缓存示例之一,布布扣,bubuko.com

C# 预计算和缓存示例之一

原文:http://www.cnblogs.com/zjgtlkj/p/3839832.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!