다음을 통해 공유


shared_ptr::operator*

지정 된 값을 가져옵니다.

Ty& operator*() const;

설명

간접 참조 연산자를 반환 합니다. *get().따라서 저장 된 포인터는 null 이어야 합니다.

예제

 

// 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); 
    } 
 
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

shared_ptr Class

shared_ptr::get