shared_ptr::reset
Nahradit vlastněný zdroj.
void reset();
template<class Other>
void reset(Other *ptr;);
template<class Other, class D>
void reset(Other *ptr, D dtor);
template<class Other, class D, class A>
void reset(Other *ptr, D dtor, A alloc);
Parametry
Other
Typ řízený ukazatelem argumentu.D
Typ odstraňovače.ptr
Ukazatel na kopii.dtor
Deleter zkopírovat.A
Typ alokátoru.alloc
Alokátor zkopírujte.
Poznámky
Všechny operátory sníží počet odkazů na daný zdroj aktuálně vlastněny *this a přiřazení vlastnictví prostředku s názvem podle pořadí operand pro *this.Pokud je počet odkazů klesne na nulu, zdroj bude uvolněna.Pokud operátor nezdaří listy *this beze změny.
Příklad
// std_tr1__memory__shared_ptr_reset.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
struct deleter
{
void operator()(int *p)
{
delete p;
}
};
int main()
{
std::shared_ptr<int> sp(new int(5));
std::cout << "*sp == " << std::boolalpha
<< *sp << std::endl;
sp.reset();
std::cout << "(bool)sp == " << std::boolalpha
<< (bool)sp << std::endl;
sp.reset(new int(10));
std::cout << "*sp == " << std::boolalpha
<< *sp << std::endl;
sp.reset(new int(15), deleter());
std::cout << "*sp == " << std::boolalpha
<< *sp << std::endl;
return (0);
}
Požadavky
Záhlaví: <paměť>
Obor názvů: std