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?
|
| ||||
|
feedback
|
|
C++ Standard, section 20.4.1.1. The default allocator allocate() function uses global operator new:
| |||||||||||||
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 | |||||
feedback
|
|
std::vector uses an Allocator that's passed as a template argument, which defaults to std::allocate. The allocator doesn't work like About the only way you could use | |||
|
feedback
|
|
If you want to prohibit the creation of your object make private constructor rather than | |||
|
feedback
|
|
In addition to the other answers here, if you want to prevent anyone from creating a STL container for your type | |||
|
feedback
|