std::string allocate memory 2 times for 1 string

烂漫一生 提交于 2021-01-27 05:40:34

问题


#include <iostream>
#include <string>

void* operator new(size_t size) {
    std::cout << "Allocated: " << size << " Bytes\n";
    return malloc(size);
}

void operator delete(void* var) {
    std::cout << "Deleted\n";
    free(var);
}

int main() {
    std::string name0 = "Ahmed Zaki Marei";
    //std::string name1 = "Lara Mohammed";

    std::cout << name0 << "\n";
    //std::cout << name1 << "\n";
}

When I try to run this code it gives me this output:

Allocated: 8 Bytes
Allocated: 32 Bytes
Ahmed Zaki Marei
Deleted
Deleted

why does it allocate 8 bytes first then allocate 32 bytes? could anyone explain it, please? thx! :)


回答1:


As C.M. already pointed out in the comments: this is MS STL behavior in Debug mode, smth to do with _ITERATOR_DEBUG_LEVEL. Everything is fine in Release.

Was curious so I tested it myself and the stack reads this on first breakpoint in new:

operator new(unsigned int size)
std::_Default_allocate_traits::_Allocate(const unsigned int _Bytes)
std::_Allocate<8,std::_Default_allocate_traits,0>(const unsigned int _Bytes)
std::allocator<std::_Container_proxy>::allocate(const unsigned int _Count)
std::_Container_proxy_ptr12<std::allocator<std::_Container_proxy>>::_Container_proxy_ptr12<std::allocator<std::_Container_proxy>>(std::allocator<std::_Container_proxy> & _Al_, std::_Container_base12 & _Mycont)
std::string::basic_string<char,std::char_traits<char>,std::allocator<char>>(const char * const _Ptr)
main()

Let us look at the basic_string constructor:

    basic_string(_In_z_ const _Elem* const _Ptr) : _Mypair(_Zero_then_variadic_args_t{}) {
        auto&& _Alproxy = _GET_PROXY_ALLOCATOR(_Alty, _Getal());
        _Container_proxy_ptr<_Alty> _Proxy(_Alproxy, _Mypair._Myval2);

and what that _Container_proxy_ptr really is:

#if _ITERATOR_DEBUG_LEVEL == 0
#define _GET_PROXY_ALLOCATOR(_Alty, _Al) _Fake_allocator()
template <class _Alloc>
using _Container_proxy_ptr = _Fake_proxy_ptr_impl;
#else // _ITERATOR_DEBUG_LEVEL == 0
#define _GET_PROXY_ALLOCATOR(_Alty, _Al) static_cast<_Rebind_alloc_t<_Alty, _Container_proxy>>(_Al)
template <class _Alloc>
using _Container_proxy_ptr = _Container_proxy_ptr12<_Rebind_alloc_t<_Alloc, _Container_proxy>>;
#endif // _ITERATOR_DEBUG_LEVEL == 0

It is _Container_proxy_ptr12 (eventually calling .allocate(1)) in Debug and _Fake_proxy_ptr_impl (doing nothing) in Release.



来源:https://stackoverflow.com/questions/63496083/stdstring-allocate-memory-2-times-for-1-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!