vote up 1 vote down star

I have a situation where I need to concatenate several string to form an id of a class. Basically I'm just looping in a list to get the ToString values of the objects and then concatenating them.

foreach (MyObject o in myList)
  result += o.ToString();

The list is NOT expected to have more than 5 elements (although it could but that's a very, very marginal case) and usually will have from 1 to 3 elements, being common for it to just have one or two.

What would be more performance, keeping the concatenation or using an StringBuilder?

StringBuilder bld = new StringBuilder()
foreach (MyObject o in myList)
  bld.Append(o.ToString());

I'm unsure if creating the StringBuilder will take more time than standard concatenation for the most usual case.

This is lazy, items on the list do not change once created so the id is lazily constructed once when called.

As a side note... Should I use a fixed array instead of a List? Would I get any performance or memory improvement if I do? (List is only used as an IEnumerable anyway)

A more general view of the question could be, how many strings are enough to stop concatenating and start building?

Should I even bother to test case the scenario?

if (myList.Count > 4) 
  ConcatWithStringBuilder(myList);
flag

This would be the perfect case for inane micro-optimizing. Don't even bother at this amount of strings. – Kyle Rozendo Oct 23 at 11:28
Is the possible microseconds difference in time worth your trouble? The time it took you to write this question is probably more than the difference between concat/builder over the life of the program. Especially if it's lazy and only being called once per execution. – Josh Smeaton Oct 23 at 12:09

9 Answers

vote up 4 vote down check

The usual answer is that string concatenation is more efficient for between 4 to 8 strings.

It depends on whose blog you read.

Here's a balanced article about the subject. http://blog.briandicroce.com/2008/02/04/stringbuilder-vs-string-performance-in-net/

Don't write a test to decide on which method to use. If you are unsure of whether it will go over the magic limit, then just use StringBuilder.

link|flag
I find the article hardly balanced. In fact it contains some statements that are just wrong. Besides the methology being stupid. – Foxfire Oct 23 at 12:08
1  
i think there is confusion over this subject and it depends who's opinion you respect. The bottom line, from what i understand is that the differences in performance are only really evident when the code is hit often and under significant load. – Aliixx Oct 23 at 12:47
@Aliixx: I completely agree. – Daniel Robinson Oct 23 at 13:44
@Foxfire: Okay, let's say "an article that presents a couple of different views on what the magic number of concatenations is for making the choice between string and StringBuilder" – Daniel Robinson Oct 23 at 13:46
@Aliixx: I completely agree with that. It's also the problem with these things. If you just want a simple rule then you can say if you have LOTS of concats (several 100+) then ALWAYS use StringBuilder. But if you want to give an exact answer then there are a lot of factors coming into the equasion. And it's no longer jsut between 4 and 8. It could as well be 2 or it could be 200 depending on the strings. – Foxfire Oct 23 at 15:50
vote up 4 vote down

I support the idea of keeping things simple until you have a good reason to make them complex.

For something like 2-5 elements there is no point in using the StringBuilder (unless you repeat this concatenation continuously). The better readable syntax "+=" has more value.

link|flag
Should I even bother to test case the scenario? – Jorge Córdoba Oct 23 at 11:26
If you're curious, why not? – Developer Art Oct 23 at 11:27
No, I meant like test if the number of objects in the list is greater than X do StringBuilder, oc do concat. I've updated the question body with this :) – Jorge Córdoba Oct 23 at 11:28
No, not in this case. Unless you're looking at a much higher number of strings, do not sacrifice readability for micro performance increases. – Kyle Rozendo Oct 23 at 11:30
I would keep it simple. Decide for one or the other option and go with it. No need to do what is called a "premature optimization". – Developer Art Oct 23 at 11:31
show 1 more comment
vote up 1 vote down

This two links can help you to better understand what's going on when using concatenation:

  1. Strings UNDOCUMENTED
  2. StringBuilder vs. String / Fast String Operations with .NET 2.0
link|flag
vote up 1 vote down

A more general view of the question could be, how many strings are enough to stop concatenating and start building?

This depends on the length of the strings and if you can predict the target length (then you should supply the length to the StringBuilder constructor!) and if you concatenate them all at once or within several steps.

If you concatenate them at once (like s = "A" + "b" + "c" + "d") then using StringBuilder likely never makes sense.

If you can exactly predict the length then even for 3 Strings StringBuilder would be faster.

Usually StringBuilder is faster if you have more than about 5 concats. But even then just concatenating the Strings usually has little overhead (unless it runs in a tight loop).

As soon as you reach 10 concats using StringBuilder will likely be favorable.

Edit: Just to make it clear: In your case you should clearly go without StringBuilder.

link|flag
vote up 0 vote down

If you can estimate the number of bytes which will be used for the full string (and use this to initialize the StringBuilder's capacity), the StringBuilder is likely to outperform the String class when doing more than approximately 3 concats.

link|flag
vote up 0 vote down

The string builder will most likely be marginally faster in this case, but really it's probably not going to be enough to fret about. It really is going to depend on two things, the number of times you are re-creating the string (because strings are immutable and joining forces a new string to be created from the two existing ones), and the size of the string elements you are concatenating together. Concatenating five strings which are 2 bytes each is going to be very different than concatenating 5 strings together which are 5000 bytes each, because the the longer the string, the more work the system has to do to allocate memory and garbage collect objects that are no longer in use. The string builder is an all around better bet, because it has already been optimized to join strings together, and you don't really have to worry about performance considerations.

With all of this in mind, if you know about how large the end size of final the string is going to be, string builder will almost certainly be faster. When you tell it how much memory to allocate for the final string, it won't have to go through the process of reallocating memory.

link|flag
vote up 0 vote down

IMO string concatenation is more readable. You use + and += instead of strBldInstance.Add() which can muddy the code a little more,

StringBuilder exists to make concatenation more performant, much more, but i usually sacrifice a smidgen of performance for code readability. Your code's not going to affected if you cat a few strings here and there. And for that code block that does cat many strings often, use StringBuilder.

link|flag
vote up 0 vote down

I'd use StringBuilder just because you want to be consistent throughout an application. Instantiating a Java/.NET object is not time consuming either, although I would guess that there would be some housekeeping upon setup for StringBuilder. Not much worse than creating multiple String objects via concatenation surely.

link|flag
vote up 0 vote down

If you can, you could have some fun and do away with the for loop altogether and use aggregate?

var concatstring = mylist.Aggregate("", (acc, item) => acc + "." + item);

not sure on the overhead of this though?

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.