|
allocator::allocatorpublic member function
allocator ( ) throw(); allocator ( const allocator& ) throw(); template <class U> allocator ( const allocator<U>& ) throw(); Construct allocator object Constructs an allocator object.The standard allocator has no data members and is not required to perform any initialization, but the three constructor versions must be defined (even if they do nothing) to allow for copy-constructions from allocator objects of other types. See also
|