C++基础之分配动态内存allocator

C++编程中需要使用智能指针,而摒弃原始的指针,通过智能指针可以对指针对象(动态分配内存的对象)进行方便安全的操作;但是面对动态数组这种类型的数据,通过采用 new [],但C++ primer中使用了allocator进行分配动态数组,防止内存泄漏等问题。


#include <memory>
#include <iostream>
#include <string>

int main()
{
    std::allocator<int> a1;   // int 的默认分配器
    int* a = a1.allocate(1);  // 一个 int 的空间
    a1.construct(a, 7);       // 构造 int
    std::cout << a[0] << '\n';
    a1.deallocate(a, 1);      // 解分配一个 int 的空间

                              // string 的默认分配器
    std::allocator<std::string> a2;

    // 同上,但以 a1 的重绑定获取
    decltype(a1)::rebind<std::string>::other a2_1;

    // 同上,但通过 allocator_traits 由类型 a1 的重绑定获取
    std::allocator_traits<decltype(a1)>::rebind_alloc<std::string> a2_2;

    std::string* s = a2.allocate(2); // 2 个 string 的空间

    a2.construct(s, "foo");
    a2.construct(s + 1, "bar");

    std::cout << s[0] << ' ' << s[1] << '\n';

    a2.destroy(s);
    a2.destroy(s + 1);
    a2.deallocate(s, 2);

    getchar();
    return 0;
}
/*
7
foo bar
*/

猜你喜欢

转载自blog.csdn.net/qccz123456/article/details/80988494