다음을 통해 공유


shared_ptr::operator->

포인터를 지정 된 값을 가져옵니다.

Ty *operator->() const;

설명

선택 연산자를 반환 합니다. get()되도록 식 sp->member 로 동일 하 게 작동 (sp.get())->member 위치 sp 클래스의 개체인 shared_ptr<Ty>.따라서 저장 된 포인터가 null 수 없습니다 및 Ty 클래스, 구조체 또는 공용 구조체 형식의 멤버가 있어야 member.

예제

 

// std_tr1__memory__shared_ptr_operator_ar.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
typedef std::pair<int, int> Mypair; 
int main() 
    { 
    std::shared_ptr<Mypair> sp0(new Mypair(1, 2)); 
 
    std::cout << "sp0->first == " << sp0->first << std::endl; 
    std::cout << "sp0->second == " << sp0->second << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

shared_ptr Class

shared_ptr::get

shared_ptr::operator*