I heard a few people expressing worries about "+" operator in std::string and various workarounds to speed up concatenation. Are any of these really necessary? If so, what is the best way to concatenate strings in C++?
|
|
The extra work is probably not worth it, unless you really really need efficiency. You probably will have much better efficiency simply by using operator += instead. Now after that disclaimer, I will answer your actual question... The efficiency of the STL string class depends on the implementation of STL you are using. You could guarantee efficiency and have greater control yourself by doing concatenation manually via c built-in functions. Why operator+ is not efficient: Take a look at this interface:
You can see that a new object is returned after each +. That means that a new buffer is used each time. If you are doing a ton of extra + operations it is not efficient. Why you can make it more efficient:
Considerations for implementation:
Rope data structure: If you need really fast concatenations consider using a rope data structure. |
|||||||||||||||||
|
|
Reserve your final space before, then use the append method with a buffer. For example, say you expect your final string length to be 1 million characters:
|
|||||||||
|
|
For most applications, it just won't matter. Just write your code, blissfully unaware of how exactly the + operator works, and only take matters into your own hands if it becomes an apparent bottleneck. |
|||||||||||||||
|
|
I would not worry about it. If you do it in a loop, strings will always preallocate memory to minimize reallocations - just use
Then it's creating temporaries - even if the compiler could eliminate some return value copies. That is because in a successively called
Now, in that addition,
Compare that to the following:
It's using the same function for a temporary and for a named string! So the compiler has to copy the argument into a new string and append to that and return it from the body of Next Visual Studio and GCC will support c++1x's move semantics (complementing copy semantics) and rvalue references as an experimental addition. That allows figuring out whether the parameter references a temporary or not. This will make such additions amazingly fast, as all the above will end up in one "add-pipeline" without copies. If it turns out to be a bottleneck, you can still do
The |
||||
|
|
|
Unlike .NET System.Strings, C++'s std::strings are mutable, and therefore can be built through simple concatenation just as fast as through other methods. |
|||||||||||
|
|
perhaps std::stringstream instead? But I agree with the sentiment that you should probably just keep it maintainable and understandable and then profile to see if you are really having problems. |
|||
|
|
In Imperfect C++, Matthew Wilson presents a dynamic string concatenator that pre-computes the length of the final string in order to have only one allocation before concatenating all parts. We can also implement a static concatenator by playing with expression templates. That kind of idea have been implemented in STLport std::string implementation -- that does not conform to the standard because of this precise hack. |
|||
|
|
|
For small strings it doesn't matter. If you have big strings you'd better to store them as they are in vector or in some other collection as parts. And addapt your algorithm to work with such set of data instead of the one big string. I prefer std::ostringstream for complex concatenation. |
|||
|
|
|
As with most things, it's easier not to do something than to do it. If you want to output large strings to a GUI, it may be that whatever you're outputting to can handle the strings in pieces better than as a large string (for example, concatenating text in a text editor - usually they keep lines as separate structures). If you want to output to a file, stream the data rather than creating a large string and outputting that. I've never found a need to make concatenation faster necessary if I removed unnecessary concatenation from slow code. |
|||
|
|