zoukankan      html  css  js  c++  java
  • 字符串连接性能

       class Program
       {
          private static readonly string STR = "0123456789";
          private static string longSTR = StringList(1024, STR);
    
          static void Main(string[] args)
          {
             Test(10000, STR);
             Test(10, longSTR);
          }
    
          public static void Test(int count, string str)
          {
             for (int i = 2; i <= 1024; i *= 2)
             {
                Time(string.Format("Nomal  Concat ({0})", i), count, () => Concat(i, str));
                Time(string.Format("StringBulider ({0})", i), count, () => StringBulider(i, str));
                Time(string.Format("String   List ({0})", i), count, () => StringList(i, str));
                Console.WriteLine();
             }
          }
    
          public static void Time(string name, int count, Func<string> function)
          {
             var watch = new Stopwatch();
             watch.Start();
             for (int i = 0; i < count; i++)
             {
                function();
             }
             watch.Stop();
             Console.WriteLine(name + watch.ElapsedTicks);
             watch.Reset();
          }
    
          public static string Concat(int count, string str)
          {
             var result = string.Empty;
             for (int i = 0; i < count; i++)
             {
                result += str + "|";
             }
             return result;
          }
    
          public static string StringBulider(int count, string str)
          {
             var result = new StringBuilder();
             for (int i = 0; i<count; i ++)
             {
                result.Append(str + "|");
             }
             return result.ToString();
          }
    
          public static string StringList(int count, string str)
          {
             var result = new List<string>();
             for (int i = 0; i < count; i++)
             {
                result.Add(str);
             }
             return string.Join("|", result);
          }
       }
    

      

  • 相关阅读:
    java中==和equels的区别
    synchronized的用法及原理
    分库分表之Mycat实现
    Mysql架构和索引及性能优化
    Java内存模型与反向代理服务器Nginx
    Spring基础知识
    使用和理解线程池
    知识补充(数据库优化、三大范式)
    最大子数组问题,分治法求解
    Mybatis学习笔记
  • 原文地址:https://www.cnblogs.com/xiao-hei/p/4920929.html
Copyright © 2011-2022 走看看