Fare9 / Shuriken-Analyzer

Repository for a library focused on binary analysis (mainly for Java related bytecodes)
BSD 3-Clause "New" or "Revised" License
36 stars 3 forks source link

Study performance of string concatenation vs std::stringbuilder and replace #45

Open Fare9 opened 2 months ago

Fare9 commented 2 months ago

Right now in the code, sometimes string concatenation is used, and sometimes stringbuilder is used to create strings using different fields from a class. Study which one has a better performance and replace it in the code.

Fare9 commented 2 months ago

https://stackoverflow.com/questions/14741144/stdstringstream-vs-stdstring-for-concatenating-many-strings a post that could help on this issue.