pointer address( reference x ) const; | ||
const_pointer address( const_reference x ) const; |
Returns the actual address of x even in presence of overloaded operator&.
Parameters
| x | - | the object to acquire address of |
Return value
The actual address of x.
Exceptions
| (none) | (until C++11) |
noexcept specification: noexcept | (since C++11) |
Please login to continue.