Are there STL implementations that use operator new[] as an allocator? On my compiler, making Foo::operator new[] private did not prevent me from creating a vector<Foo>... is that behavior guaranteed by anything?

link|improve this question
feedback

5 Answers

C++ Standard, section 20.4.1.1. The default allocator allocate() function uses global operator new:

pointer allocate(size_type n, allocator<void>::const_pointerhint=0);

3 Notes: Uses ::operator new(size_t) (18.4.1).
link|improve this answer
Can't find such statement in C++ Standard. Which revision do you use? – Kirill V. Lyadvinsky Dec 8 '09 at 13:46
ISO/IEC 14882:1998(E) – anon Dec 8 '09 at 13:50
1  
It's 20.4.1.1, not 24.4.1.1, which might explain why Kirill didn't find it. – Steve Jessop Dec 8 '09 at 14:08
Gah! You are right - I'll edit the answer. – anon Dec 8 '09 at 14:09
Wouldn't it make more sense to use ::operator new[] instead of ::operator new to allocate blocks of memory intended to hold a sequence of objects instead of a single object? – Fred Dec 8 '09 at 18:46
show 1 more comment
feedback

std library implementations won't use T::operator new[] for std::allocator. Most of them use their own memory pooling infrastructure behind the scenes.

In general, if you want to stop Foo objects being dynamically allocated, you'll have to have make all the constructors private and provide a function that creates Foo objects. Of course, you won't be able to create them as auto variables either though.

link|improve this answer
2  
A vector basically allocates uninitialized memory and places objects therein later as they are added. Reserving memory does not create instances. – UncleBens Dec 8 '09 at 14:00
feedback

std::vector uses an Allocator that's passed as a template argument, which defaults to std::allocate. The allocator doesn't work like new[] though -- it just allocates raw memory, and placement new is used to actually create the objects in that memory when you tell it to add the objects (e.g. with push_back() or resize()).

About the only way you could use new[] in an allocator would be if you abused things a bit, and allocated raw space using something like new char[size];. As abuses go, that one's fairly harmless, but it's still unrelated to your overload of new[] for the class.

link|improve this answer
feedback

If you want to prohibit the creation of your object make private constructor rather than operator new.

link|improve this answer
feedback

In addition to the other answers here, if you want to prevent anyone from creating a STL container for your type Foo, then simply make the copy-constructor for Foo private (also the move-constructor if you're working with C++11). All STL-container objects must have a valid copy or move constructor for the container's allocator to properly call placement new and construct a copy of the object in the allocated memory block for the container.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.