태그: allocator
4편
-
[2026] C++ Allocator | 메모리 할당자 커스터마이징 가이드
Everything about C++ Allocator : from basic concepts to practical applications. Master key content quickly with examples. 메모리 할당자 커스터마이징 가이드. C++ Alloc...
-
[2026] C++ Custom Allocator | 커스텀 할당자 가이드
C++ Custom Allocator에 대해 정리한 개발 블로그 글입니다. template<typename T> class MyAllocator { public: using value_type = T; T allocate(size_t n) { return….
-
[2026] C++ Memory Pool | 메모리 풀 가이드
C++ Memory Pool에 대해 정리한 개발 블로그 글입니다. template<typename T, size_t N> class FixedPool { alignas(T) char buffer[N sizeof(T)]; std::vector<T> freeList;….
-
[2026] C++ Stack Allocator | 스택 할당자 가이드
Everything about C++ Stack Allocator : from basic concepts to practical applications. Master key content quickly with examples.스택 할당자 가이드. C++ Stack A...