共用方式為


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 類別