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