allocator::destroy
개체 소멸자는 개체가 저장 된 위치는 메모리 할당을 해제 하지 않고 호출 합니다.
void destroy(
pointer _Ptr
);
매개 변수
- _Ptr
소멸 될 개체의 주소를 지정 하는 포인터입니다.
설명
멤버 함수에서 지정 된 개체를 소멸 시킵니다. _Ptr, 소멸자를 호출 하 여 _Ptr ->유형::~ 형식.
예제
// allocator_destroy.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main( )
{
vector <int> v1;
vector <int>::iterator v1Iter;
vector <int>:: allocator_type v1Alloc;
int i;
for ( i = 1 ; i <= 7 ; i++ )
{
v1.push_back( 2 * i );
}
cout << "The original vector v1 is:\n ( " ;
for ( v1Iter = v1.begin( ) ; v1Iter != v1.end( ) ; v1Iter++ )
cout << *v1Iter << " ";
cout << ")." << endl;
allocator<int>::pointer v1PtrA;
int kA = 12, kB = -99;
v1PtrA = v1Alloc.address( *find(v1.begin( ), v1.end( ), kA) );
v1Alloc.destroy ( v1PtrA );
v1Alloc.construct ( v1PtrA , kB );
cout << "The modified vector v1 is:\n ( " ;
for ( v1Iter = v1.begin( ) ; v1Iter != v1.end( ) ; v1Iter++ )
cout << *v1Iter << " ";
cout << ")." << endl;
}
요구 사항
헤더: <memory>
네임 스페이스: std