table of contents
        
      
      
    
      other versions
    
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::auto_ptr::operator*,std::auto_ptr::operator->(3) | C++ Standard Libary | std::auto_ptr::operator*,std::auto_ptr::operator->(3) | 
NAME¶
std::auto_ptr::operator*,std::auto_ptr::operator-> - std::auto_ptr::operator*,std::auto_ptr::operator->
Synopsis¶
 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¶
 get returns a pointer to the managed object
  
   (public member function)
| 2024.06.10 | http://cppreference.com |