shared_ptr::operator->
取得指標所指定的值。
Ty *operator->() const;
備註
選取運算子傳回 get(),因此,運算式 sp->member 正常運作方式和 sp 是類別 shared_ptr<Ty>物件的 (sp.get())->member 相同。 因此,儲存的指標不可以是 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