【STL】-auto_ptr的用法

时间:2023-03-08 16:54:54
【STL】-auto_ptr的用法

初始化:

 #include<memory> //auto_ptr header
void f()
{
  auto_ptr<classA> ptr(new classA);
}

拷贝:

 //auto_ptr can't be initialized by = operator
auto_ptr<classA> ptr1(new classA); //OK
auto_ptr<classA> ptr2 = new classA; //NOK
ptr1 = auto_ptr<classA>(new int()); //OK
ptr1 = new int ; //NOK

要点:

1. auto_ptr不可以指向array,因为auto_ptr用的是delete而不是delete []

2. auto_ptr不能作为容器的元素,因为不符合基本的拷贝后两个值要相等的要求,auto_ptr拷贝后,前者交出拥有权

3. const auto_ptr的指向不能有变化,但是其指向的值可以有变化。 p, q都是const auto_ptr, p = q不可以,但是*p = *q是可以的