Difference between revisions of "cpp/memory/allocator/address"
From cppreference.com
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh) |
m (→Synopsis: +(1),(2)) |
||
(10 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
{{cpp/memory/allocator/title|address}} | {{cpp/memory/allocator/title|address}} | ||
{{cpp/memory/allocator/navbar}} | {{cpp/memory/allocator/navbar}} | ||
− | {{ | + | {{dcl begin}} |
− | {{ | + | {{dcl rev begin|num=1}} |
+ | {{dcl|until=c++11| | ||
pointer address( reference x ) const; | pointer address( reference x ) const; | ||
}} | }} | ||
− | {{ | + | {{dcl|since=c++11|deprecated=c++17|removed=c++20| |
+ | pointer address( reference x ) const noexcept; | ||
+ | }} | ||
+ | {{dcl rev end}} | ||
+ | {{dcl rev begin|num=2}} | ||
+ | {{dcl|until=c++11| | ||
const_pointer address( const_reference x ) const; | const_pointer address( const_reference x ) const; | ||
}} | }} | ||
− | {{ | + | {{dcl|since=c++11|deprecated=c++17|removed=c++20| |
+ | const_pointer address( const_reference x ) const noexcept; | ||
+ | }} | ||
+ | {{dcl rev end}} | ||
+ | {{dcl end}} | ||
− | Returns the actual address of {{ | + | Returns the actual address of {{c|x}} even in presence of overloaded {{c/core|operator&}}. |
===Parameters=== | ===Parameters=== | ||
− | {{ | + | {{par begin}} |
− | {{ | + | {{par|x|the object to acquire address of}} |
− | {{ | + | {{par end}} |
===Return value=== | ===Return value=== | ||
− | The actual address of {{ | + | The actual address of {{c|x}}. |
− | === | + | ===Defect reports=== |
− | {{ | + | {{dr list begin}} |
+ | {{dr list item|wg=lwg|dr=634|paper=N2436|std=C++98|before=the return value is {{c|&x}}<br>(which is affected by overloaded {{c/core|operator&}})|after=returns the actual address of {{c|x}}}} | ||
+ | {{dr list end}} | ||
− | + | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
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 |