GCC为STL使用的默认分配器是什么



根据这个链接,gcc提供了许多有趣的内存分配器来与STL容器一起使用,但如果我在创建std::list时没有指定一个,那么默认情况下会使用哪个?

正如你链接到的页面上所说,

分配器的当前默认选择是__gnu_cxx::new_allocator。

即,默认分配器基本上只是operator new

根据wiki:"默认分配器使用运算符new来分配内存。[13]这通常作为C堆分配函数的薄层来实现,[14]这些函数通常针对大内存块的不频繁分配进行优化"

摘自"ISO/IEC(2003).ISO/IEC 14882:2003(E):编程语言-C++"(维基参考)

默认分配器:

namespace std {   
  template <class T> class allocator;  
  // specialize for void: template <> class allocator<void>   
  {  
   public:  
   typedef void*    pointer;   
   typedef const void* const_pointer;
   // reference-to-void members are impossible. typedef void value_type;  
   template <class U> struct rebind  {  typedef allocator<U> other;  };  
};

template <class T> class allocator  
{  
public:  
  typedef size_t size_type;  
  typedef ptrdiff_t difference_type;  
  typedef T* pointer;  
  typedef const T* const_pointer;  
  typedef T& reference;  
  typedef const T& const_reference;  
  typedef T template value_type;  
  template <class U> struct rebind { typedef allocator<U> other;   
}; 
  allocator() throw();  
  allocator(const allocator&) throw();  
  template <class U> allocator(const allocator<U>&) throw();  
  ̃allocator() throw();
   pointer address(reference x) const;      
  const_pointer address(const_reference x) const;`    
  pointer allocate(  
     size_type, allocator<void>::const_pointer hint = 0);  
     void deallocate(pointer p, size_type n);  
     size_type max_size() const throw();  
     void construct(pointer p, const T& val);  
     void destroy(pointer p);  
     };  
}

最新更新