std::shared_ptr::operator*, std::shared_ptr::operator->
From cppreference.com
< cpp | memory | shared ptr
T& operator*() const; |
(1) | |
T* operator->() const; |
(2) | |
Dereferences pointer to the managed object.
Contents |
[edit] Parameters
(none)
[edit] Return value
1) reference to the managed object.
2) pointer to the managed object.
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
returns a pointer to the managed object (public member function) |