共用方式為


allocator_traits::destroy 方法

使用指定的配置器呼叫物件的解構函式,而不需解除其記憶體的靜態方法。

template<class Uty>
    static void destroy(Alloc& al, Uty *ptr);

參數

  • al
    配置器物件。

  • ptr
    對物件的位置指標。

備註

如果該運算式是語式正確的,這個方法會呼叫 al.destroy(ptr);否則會評估 ptr->~Uty()。

需求

標頭: <memory>

命名空間: std

請參閱

參考

allocator::destroy

allocator_traits 類別