Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/memory/allocator/address"

From cppreference.com
< cpp‎ | memory‎ | allocator
m (merge noexcept)
(actualización)
Line 20: Line 20:
 
{{dcl end}}
 
{{dcl end}}
  
Returns the actual address of {{tt|x}} even in presence of overloaded {{c|operator&}}.
+
Devuelve la dirección actual de {{tt|x}} incluso en la presencia del operador {{c|operator&}} sobrecargado.
  
===Parameters===
+
===Parámetros===
 
{{par begin}}
 
{{par begin}}
{{par | x | the object to acquire address of}}
+
{{par | x | El objeto del que adquirir la dirección. }}
 
{{par end}}
 
{{par end}}
  
===Return value===
+
===Valor de retorno===
The actual address of {{tt|x}}.
+
La dirección actual de {{tt|x}}.
  
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
+
{{langlinks|de|en|fr|it|ja|pt|ru|zh}}

Revision as of 12:26, 15 May 2022

 
 
Dynamic memory management
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Allocators
Garbage collection support
(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)



 
std::allocator
Member functions
allocator::address
(until C++20)
(until C++20)
(until C++20)
Non-member functions
 
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)
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)

Devuelve la dirección actual de x incluso en la presencia del operador operator& sobrecargado.

Parámetros

x - El objeto del que adquirir la dirección.

Valor de retorno

La dirección actual de x.