std::shared_ptr::operator*, std::shared_ptr::operator->

From Cppreference

Jump to: navigation, search
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

[edit] See also

get
returns a pointer to the managed object
(public member function)