W3cubDocs

/C++

std::auto_ptr<T>::operator*, std::auto_ptr<T>::operator->

T& operator*() const throw();
(1) (deprecated in C++11)
(removed in C++17)
T* operator->() const throw();
(2) (deprecated in C++11)
(removed in C++17)

Dereferences a pointer to the managed object. The first version requires get() != 0.

Parameters

(none).

Return value

1) *get().
2) get().

See also

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

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/auto_ptr/operator_star_