Udostępnij za pośrednictwem


shared_ptr::operator*

Pobiera wartość wyznaczone.

Ty& operator*() const;

Uwagi

Operator pośrednia zwraca *get().Stąd przechowywane wskaźnika nie może być zerowy.

Przykład

 

// std_tr1__memory__shared_ptr_operator_st.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
int main() 
    { 
    std::shared_ptr<int> sp0(new int(5)); 
 
    std::cout << "*sp0 == " << *sp0 << std::endl; 
 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: <memory>

Obszar nazw: std

Zobacz też

Informacje

shared_ptr Class

shared_ptr::get