• 字符串拼接性能问题


    字符串拼接主要包括三类:+,String.Format(),StringBuilder.Append()

    1)对于少量固定的字符串拼接,如string s= "a" + "b" + "c",系统会优化成s= String.Concat("a","b","c"),不会新建多个字符串。

    如果写成string s="a"; s +="b"; s+="c";则会创建三个新的字符串。

    2)String.Format的源代码:
       public static String Format( 
                IFormatProvider provider, String format, params Object[] args) {
                if (format == null || args == null)
                   throw new ArgumentNullException((format==null)?"format":"args");
                StringBuilder sb = new StringBuilder(format.Length + args.Length * 8);
                sb.AppendFormat(provider,format,args);
                return sb.ToString();
       }

    可见,它和StringBuilder有着相似的效率,比用“+”的拼接方式高效,并且代码易于阅读。

    string s= String.Format("{0}{1}{2}","a","b","c");

    3)StringBuilder可以指定内存空间的容量,但可能需要进行数据类型转化。字符串较少时,可以使用String.Format()代替。

    4)少量的字符串操作时,可以使用“+”或者String.Format();大量的字符串操作时,比如在循环体内,必须使用StringBuilder.Append()。

  • 相关阅读:
    以后努力,每天写博客!
    无题
    Fainting
    明天任务
    hdu 4022 Bombing(map)
    codeforces 1216E1 Numerical Sequence (easy version) (前缀和/二分)
    CodeForces 1176E Cover it!
    codeforces 1234D Distinct Characters Queries
    codeforces 1249C2 Good Numbers (hard version)
    codeforces 913B Christmas Spruce(树)
  • 原文地址:https://www.cnblogs.com/AaronBlogs/p/6823500.html
Copyright © 2020-2023  润新知