Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何开源分配器(可能在 Boost 中)可用于std::wstring实现快速分配模式,如本博文中所示?
std::wstring
Boost.Pool似乎不太适合这个目的。
不,没有(我搜索了几个小时,一次)。如果您不关心在使用过程中释放内存,那么您自己做是相当简单的。如果你想动态释放它,那么关于空闲列表管理、LRU 等就变成了很多工作。