allocator_traits::destroy 方法
使用的指定分配程序调用对象的析构函数,而不释放其内存的静态方法。
template<class Uty>
static void destroy(Alloc& al, Uty *ptr);
参数
al
分配程序对象。ptr
对对象的位置的指针。
备注
此方法调用 al.destroy(ptr),因此,如果该表达式是" WellFormed ";否则它计算 ptr->~Uty()。
要求
页眉: <内存>
命名空间: std