Skip to main content

std::vector destructors

constexpr ~vector();

Destructs the vector.

The destructors of the elements are called and the used storage is deallocated.

note

If the elements are pointers, the pointed-to objects are not destroyed.

Complexity

Linear in the size of the container - O(size()).

This article originates from this CppReference page. It was likely altered for improvements or editors' preference. Click "Edit this page" to see all changes made to this document.
Hover to see the original license.

std::vector destructors

constexpr ~vector();

Destructs the vector.

The destructors of the elements are called and the used storage is deallocated.

note

If the elements are pointers, the pointed-to objects are not destroyed.

Complexity

Linear in the size of the container - O(size()).

This article originates from this CppReference page. It was likely altered for improvements or editors' preference. Click "Edit this page" to see all changes made to this document.
Hover to see the original license.