weak_ptr::lock
Erhält exklusiver Besitz einer Ressource.
shared_ptr<Ty> lock() const;
Hinweise
Die Memberfunktion gibt ein leeres shared_ptr-Objekt zurück, wenn *this abgelaufen ist, Andernfalls wird ein Objekt shared_ptr Class<Ty> zurück, das die Ressource besitzt, dass *this auf zeigt.
Beispiel
// std_tr1__memory__weak_ptr_lock.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
struct deleter
{
void operator()(int *p)
{
delete p;
}
};
int main()
{
std::weak_ptr<int> wp;
{
std::shared_ptr<int> sp(new int(10));
wp = sp;
std::cout << "wp.expired() == " << std::boolalpha
<< wp.expired() << std::endl;
std::cout << "*wp.lock() == " << *wp.lock() << std::endl;
}
// check expired after sp is destroyed
std::cout << "wp.expired() == " << std::boolalpha
<< wp.expired() << std::endl;
std::cout << "(bool)wp.lock() == " << std::boolalpha
<< (bool)wp.lock() << std::endl;
return (0);
}
Anforderungen
Header: <memory>
Namespace: std