很难理解 std::basic_string 内存分配
Having hard time understanding std::basic_string memory allocation
我目前正在学习 STL,我偶然发现了我的一位老师制作的示例。
template <class T>
struct SpyAllocator : std::allocator<T>
{
typedef T value_type;
SpyAllocator(/*vector args*/) = default;
template<class U>
SpyAllocator(const SpyAllocator<U>& other){}
template<class U>
struct rebind
{
using other = SpyAllocator<U>;
};
T* allocate(std::size_t n)
{
T* p = (T*) new char[sizeof(T) * n];
memorySpy.NotifyAlloc(sizeof(T), n, p);
return p;
};
void deallocate(T* p, std::size_t n)
{
memorySpy.NotifyDealloc(p, n);
delete (char*)p;
}
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
};
template <class T, class U>
bool operator==(const SpyAllocator<T>&, const SpyAllocator<U>&) { return
false; }
template <class T, class U>
bool operator!=(const SpyAllocator<T>&, const SpyAllocator<U>&) { return
false; }
以上是他的分配器实现。
#define String std::basic_string<char, std::char_traits<char>, SpyAllocator<char>>
他将std::basic_string
定义为String
。
在 main.cpp 文件中,
int main()
{
DO(String s1 = "Bonjour");
DO(String s2 = " le monde !");
DO(String s3 = s1 + s2);
printf("s3 : %s\n", s3.c_str());
printf("\nDestroy vector\n\n");
return 0;
}
他正在测试+运算符和拷贝构造函数,结果是
String s1 = "Bonjour"
String s2 = " le monde !"
String s3 = s1 + s2
*** Allocate block 1 : 31 elem of 1 bytes
s3 : Bonjour le monde !
Destroy vector
*** Deallocate block 1 : 31 elem of 1 bytes
我的问题是:
1-我统计了String s1
和String s2
的字符数(包括\0),是19个,但是分配了31个。 Allocate block 1 : 31 elem of 1 bytes
这背后的原因是什么?
2- 似乎 String s1
和 String s2
构造函数没有分配任何内存,但 String s1
和 String s2
仍然具有值。
怎么可能?
感谢您的宝贵时间!
这里是我们查看 basic_string.h 的 STDLib
时得到的结果
enum
{
_S_local_capacity = 15 / sizeof(_CharT)
};
union
{
_CharT _M_local_buf[_S_local_capacity + 1];
size_type _M_allocated_capacity;
};
We know that std::string
is a typedef
for a specialization of a std::basic_string with char
type.
basic_string
contains a 15 bytes fixed buffer for short strings then we +1 for the [=15=]
. 所以当我们连接存储在小缓冲区中的 2 个字符串时,它将连接整个字符串然后为 [=15=]
添加 +1。所以它将是 15 + 15 + 1 = 31.
这是我阅读 basic_string.h
的理解
我目前正在学习 STL,我偶然发现了我的一位老师制作的示例。
template <class T>
struct SpyAllocator : std::allocator<T>
{
typedef T value_type;
SpyAllocator(/*vector args*/) = default;
template<class U>
SpyAllocator(const SpyAllocator<U>& other){}
template<class U>
struct rebind
{
using other = SpyAllocator<U>;
};
T* allocate(std::size_t n)
{
T* p = (T*) new char[sizeof(T) * n];
memorySpy.NotifyAlloc(sizeof(T), n, p);
return p;
};
void deallocate(T* p, std::size_t n)
{
memorySpy.NotifyDealloc(p, n);
delete (char*)p;
}
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
};
template <class T, class U>
bool operator==(const SpyAllocator<T>&, const SpyAllocator<U>&) { return
false; }
template <class T, class U>
bool operator!=(const SpyAllocator<T>&, const SpyAllocator<U>&) { return
false; }
以上是他的分配器实现。
#define String std::basic_string<char, std::char_traits<char>, SpyAllocator<char>>
他将std::basic_string
定义为String
。
在 main.cpp 文件中,
int main()
{
DO(String s1 = "Bonjour");
DO(String s2 = " le monde !");
DO(String s3 = s1 + s2);
printf("s3 : %s\n", s3.c_str());
printf("\nDestroy vector\n\n");
return 0;
}
他正在测试+运算符和拷贝构造函数,结果是
String s1 = "Bonjour"
String s2 = " le monde !"
String s3 = s1 + s2
*** Allocate block 1 : 31 elem of 1 bytes
s3 : Bonjour le monde !
Destroy vector
*** Deallocate block 1 : 31 elem of 1 bytes
我的问题是:
1-我统计了String s1
和String s2
的字符数(包括\0),是19个,但是分配了31个。 Allocate block 1 : 31 elem of 1 bytes
这背后的原因是什么?
2- 似乎 String s1
和 String s2
构造函数没有分配任何内存,但 String s1
和 String s2
仍然具有值。
怎么可能?
感谢您的宝贵时间!
这里是我们查看 basic_string.h 的 STDLib
时得到的结果enum
{
_S_local_capacity = 15 / sizeof(_CharT)
};
union
{
_CharT _M_local_buf[_S_local_capacity + 1];
size_type _M_allocated_capacity;
};
We know that std::string
is a typedef
for a specialization of a std::basic_string with char
type.
basic_string
contains a 15 bytes fixed buffer for short strings then we +1 for the [=15=]
. 所以当我们连接存储在小缓冲区中的 2 个字符串时,它将连接整个字符串然后为 [=15=]
添加 +1。所以它将是 15 + 15 + 1 = 31.
这是我阅读 basic_string.h