[字符串] StartWith和EndWith效率比较低_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > [字符串] StartWith和EndWith效率比较低

[字符串] StartWith和EndWith效率比较低

 2013/10/12 18:25:13  冲动  博客园  我要评论(0)
  • 摘要:之前无意中看到有人提到StartWith和EndWith效率比较低,今天恰好有用到这样的场景,于是写了个测试验证一下。该示例仅在比较字符串首尾单个字符,用途有限。varstr="\"h放大快来和发放咖啡里卡的时间累计开发哈独立思考后11111111111111\"";Stopwatchwatch=newStopwatch();watch.Start();for(inti=0;i<1000000;i++){vars=str.Length>0?str[0]==':':false
  • 标签:字符串 效率

  之前无意中看到有人提到StartWith和EndWith效率比较低,今天恰好有用到这样的场景,于是写了个测试验证一下。

  该示例仅在比较字符串首尾单个字符,用途有限。

 

                var str = "\"h放大快来和发放咖啡里卡的时间累计开发哈独立思考后11111111111111\"";
                Stopwatch watch = new Stopwatch();
                watch.Start();
                for (int i = 0; i < 1000000; i++)
                {
                    var s = str.Length > 0 ? str[0] == ':' : false;
                    var e = str.Length > 0 ? str[str.Length - 1] == ':' : false;
                }
                watch.Stop();
                Console.WriteLine("直接取字符比较耗时:{0}",watch.ElapsedMilliseconds);
                watch.Reset();
                watch.Start();
                for (int i = 0; i < 1000000; i++)
                {
                    var s = str.StartsWith("\"");
                    var e = str.EndsWith("\"");
                }
                Console.WriteLine("调用字符串方法耗时:{0}", watch.ElapsedMilliseconds);

 

    测试结果为:

      直接取字符串比较耗时:7

      调用字符串方法耗时:213

 

    差别还是有一点,在比较单个字符的时候,推荐直接使用 string[int index] .

        

发表评论
用户名: 匿名