String vs. StringBuilder

后端 未结 24 1255
眼角桃花
眼角桃花 2020-11-22 06:22

I understand the difference between String and StringBuilder (StringBuilder being mutable) but is there a large performance difference

相关标签:
24条回答
  • 2020-11-22 06:45

    I believe StringBuilder is faster if you have more than 4 strings you need to append together. Plus it can do some cool things like AppendLine.

    0 讨论(0)
  • 2020-11-22 06:46

    StringBuilder is preferable IF you are doing multiple loops, or forks in your code pass... however, for PURE performance, if you can get away with a SINGLE string declaration, then that is much more performant.

    For example:

    string myString = "Some stuff" + var1 + " more stuff"
                      + var2 + " other stuff" .... etc... etc...;
    

    is more performant than

    StringBuilder sb = new StringBuilder();
    sb.Append("Some Stuff");
    sb.Append(var1);
    sb.Append(" more stuff");
    sb.Append(var2);
    sb.Append("other stuff");
    // etc.. etc.. etc..
    

    In this case, StringBuild could be considered more maintainable, but is not more performant than the single string declaration.

    9 times out of 10 though... use the string builder.

    On a side note: string + var is also more performant that the string.Format approach (generally) that uses a StringBuilder internally (when in doubt... check reflector!)

    0 讨论(0)
  • 2020-11-22 06:48

    To clarify what Gillian said about 4 string, if you have something like this:

    string a,b,c,d;
     a = b + c + d;
    

    then it would be faster using strings and the plus operator. This is because (like Java, as Eric points out), it internally uses StringBuilder automatically (Actually, it uses a primitive that StringBuilder also uses)

    However, if what you are doing is closer to:

    string a,b,c,d;
     a = a + b;
     a = a + c;
     a = a + d;
    

    Then you need to explicitly use a StringBuilder. .Net doesn't automatically create a StringBuilder here, because it would be pointless. At the end of each line, "a" has to be an (immutable) string, so it would have to create and dispose a StringBuilder on each line. For speed, you'd need to use the same StringBuilder until you're done building:

    string a,b,c,d;
    StringBuilder e = new StringBuilder();
     e.Append(b);
     e.Append(c);
     e.Append(d);
     a = e.ToString();
    
    0 讨论(0)
  • 2020-11-22 06:48

    As a general rule of thumb, if I have to set the value of the string more than once, or if there are any appends to the string, then it needs to be a string builder. I have seen applications that I have written in the past before learning about string builders that have had a huge memory foot print that just seems to keep growing and growing. Changing these programs to use the string builder cut down the memory usage significantly. Now I swear by the string builder.

    0 讨论(0)
  • 2020-11-22 06:48

    My approach has always been to use StringBuilder when concatenating 4 or more strings OR When I don't know how may concatenations are to take place.

    Good performance related article on it here

    0 讨论(0)
  • 2020-11-22 06:49

    Yes, the performance difference is significant. See the KB article "How to improve string concatenation performance in Visual C#".

    I have always tried to code for clarity first, and then optimize for performance later. That's much easier than doing it the other way around! However, having seen the enormous performance difference in my applications between the two, I now think about it a little more carefully.

    Luckily, it's relatively straightforward to run performance analysis on your code to see where you're spending the time, and then to modify it to use StringBuilder where needed.

    0 讨论(0)
提交回复
热议问题