weak_ptr::weak_ptr
Construit un weak_ptr.
weak_ptr();
weak_ptr(const weak_ptr& wp);
template<class Other>
weak_ptr(const weak_ptr<Other>& wp);
template<class Other>
weak_ptr(const shared_ptr<Other>& sp);
Paramètres
Other
Le type contrôlé par l'argument est partagé/pointeur faible.wp
Le pointeur faible à copier.sp
Le pointeur partagé à copier.
Notes
Les constructeurs chaque élément qu'un objet qui indique la ressource nommée par la séquence d'opérande.
Exemple
// std_tr1__memory__weak_ptr_construct.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::weak_ptr<int> wp0;
std::cout << "wp0.expired() == " << std::boolalpha
<< wp0.expired() << std::endl;
std::shared_ptr<int> sp1(new int(5));
std::weak_ptr<int> wp1(sp1);
std::cout << "*wp1.lock() == "
<< *wp1.lock() << std::endl;
std::weak_ptr<int> wp2(wp1);
std::cout << "*wp2.lock() == "
<< *wp2.lock() << std::endl;
return (0);
}
Configuration requise
en-tête : <memory>
l'espace de noms : DST