Namespaces
Variants

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

From cppreference.net
Memory management library
( exposition only* )
Allocators
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Memory resources
Uninitialized storage (until C++20)
( until C++20* )
( until C++20* )
( until C++20* )

Garbage collector support (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
T & operator * ( ) const throw ( ) ;
(1) (in C++11 veraltet)
(in C++17 entfernt)
T * operator - > ( ) const throw ( ) ;
(2) (in C++11 veraltet)
(in C++17 entfernt)

Dereferenziert einen Zeiger auf das verwaltete Objekt. Die erste Version erfordert get ( ) ! = 0 .

Parameter

(keine)

Rückgabewert

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

Siehe auch

gibt einen Zeiger auf das verwaltete Objekt zurück
(öffentliche Elementfunktion)