Difference between revisions of "cpp/memory/allocator/address"
From cppreference.com
(Added LWG issue #634 DR.) |
m (→Synopsis: +(1),(2)) |
||
Line 2: | Line 2: | ||
{{cpp/memory/allocator/navbar}} | {{cpp/memory/allocator/navbar}} | ||
{{dcl begin}} | {{dcl begin}} | ||
− | {{dcl rev begin}} | + | {{dcl rev begin|num=1}} |
{{dcl|until=c++11| | {{dcl|until=c++11| | ||
pointer address( reference x ) const; | pointer address( reference x ) const; | ||
Line 10: | Line 10: | ||
}} | }} | ||
{{dcl rev end}} | {{dcl rev end}} | ||
− | {{dcl rev begin}} | + | {{dcl rev begin|num=2}} |
{{dcl|until=c++11| | {{dcl|until=c++11| | ||
const_pointer address( const_reference x ) const; | const_pointer address( const_reference x ) const; |
Latest revision as of 08:28, 22 November 2023
(1) | ||
pointer address( reference x ) const; |
(until C++11) | |
pointer address( reference x ) const noexcept; |
(since C++11) (deprecated in C++17) (removed in C++20) |
|
(2) | ||
const_pointer address( const_reference x ) const; |
(until C++11) | |
const_pointer address( const_reference x ) const noexcept; |
(since C++11) (deprecated in C++17) (removed in C++20) |
|
Returns the actual address of x even in presence of overloaded operator&.
[edit] Parameters
x | - | the object to acquire address of |
[edit] Return value
The actual address of x.
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 634 (N2436) |
C++98 | the return value is &x (which is affected by overloaded operator&) |
returns the actual address of x |