STL_allocator.h

✍✍✍

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#pragma once
#ifndef _ALLOCATOR_H_
#define _ALLOCATOR_H_

// 这个头文件包含一个模板类 allocator,用于管理内存的分配、释放,对象的构造、析构

#include "construct.h"
#include "util.h"

namespace mystl
{

// 模板类:allocator
// 模板函数代表数据类型
template <class T>
class allocator
{
public:
typedef T value_type;
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
typedef size_t size_type;
typedef ptrdiff_t difference_type;

public:
static T* allocate();
static T* allocate(size_type n);

static void deallocate(T* ptr);
static void deallocate(T* ptr, size_type n);

static void construct(T* ptr);
static void construct(T* ptr, const T& value);
static void construct(T* ptr, T&& value);

template <class... Args>
static void construct(T* ptr, Args&& ...args);

static void destroy(T* ptr);
static void destroy(T* first, T* last);
};
//override
template <class T>
T* allocator<T>::allocate()
{
return static_cast<T*>(::operator new(sizeof(T)));
}
//override
template <class T>
T* allocator<T>::allocate(size_type n)
{
if (n == 0)
return nullptr;
return static_cast<T*>(::operator new(n * sizeof(T)));
}
//override
template <class T>
void allocator<T>::deallocate(T* ptr)
{
if (ptr == nullptr)
return;
::operator delete(ptr);
}
//override
template <class T>
void allocator<T>::deallocate(T* ptr, size_type /*size*/)
{
if (ptr == nullptr)
return;
::operator delete(ptr);
}
//override
template <class T>
void allocator<T>::construct(T* ptr)
{
mystl::construct(ptr);
}
//override
template <class T>
void allocator<T>::construct(T* ptr, const T& value)
{
mystl::construct(ptr, value);
}
//override
template <class T>
void allocator<T>::construct(T* ptr, T&& value)
{
mystl::construct(ptr, mystl::move(value));
}
//override
template <class T>
template <class ...Args>
void allocator<T>::construct(T* ptr, Args&& ...args)
{
mystl::construct(ptr, mystl::forward<Args>(args)...);
}
//override
template <class T>
void allocator<T>::destroy(T* ptr)
{
mystl::destroy(ptr);
}
//override
template <class T>
void allocator<T>::destroy(T* first, T* last)
{
mystl::destroy(first, last);
}

}
#endif

本文标题:STL_allocator.h

文章作者:zhz

发布时间:2020年05月17日 - 17:05

最后更新:2020年05月17日 - 17:05

原始链接:http://yoursite.com/2020/05/17/STL-allocator-h/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。