std::auto_ptr<T>::operator*, std::auto_ptr<T>::operator->
cppreference.com
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
T& operator*() const throw(); |
(1) | ( C++11) ( C++17) |
T* operator->() const throw(); |
(2) | ( C++11) ( C++17) |
. get() != 0.
()
1)
*get().2)
get().| (public -) [] |