shared_ptr::use_count
Zlicza liczby właścicieli zasobu.
long use_count() const;
Uwagi
Funkcja Członkowskich zwraca liczbę shared_ptr obiektów, które jest właścicielem zasobu, którego właścicielem jest *this.
Przykład
// std_tr1__memory__shared_ptr_use_count.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp1(new int(5));
std::cout << "sp1.use_count() == "
<< sp1.use_count() << std::endl;
std::shared_ptr<int> sp2(sp1);
std::cout << "sp1.use_count() == "
<< sp1.use_count() << std::endl;
return (0);
}
Wymagania
Nagłówek: <memory>
Obszar nazw: std