This small article compares different string implementations on the Windows platform.
C++ String Benchmark: STL vs. ATL vs. Custom Pool Allocator
by Giovanni Dicanio
From the article:
I was curious to compare the performance of the STL string implementation versus ATL CString, using Visual Studio 2019, so I wrote some simple C++ benchmark code for this purpose. I also added into the mix a custom string pool allocator.
Add a Comment