std::set::set
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| explicit set( const Compare& comp = Compare(), const Allocator& alloc = Allocator() ); |
(1) | |
| explicit set( const Allocator& alloc ); |
(1) | (ya que C + +11) |
| template< class InputIt > set( InputIt first, InputIt last, |
(2) | |
| set( const set& other ); |
(3) | |
| set( const set& other, const Allocator& alloc ); |
(3) | (ya que C + +11) |
| set( set&& other ); |
(4) | (ya que C + +11) |
| set( set&& other, const Allocator& alloc ); |
(4) | (ya que C + +11) |
| set( std::initializer_list<value_type> init, const Compare& comp = Compare(), |
(5) | (ya que C + +11) |
Constructs new container from a variety of data sources and optionally using user supplied allocator alloc or comparison function comp.
default constructor. Construye contenedor vacío .
2) Original:
default constructor. Constructs empty container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
construye el recipiente con el contenido de la
3) [first, last) rango .Original:
constructs the container with the contents of the range
[first, last).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
copiar constructor. Construye el recipiente con la copia de los contenidos de
4) other. Si no se proporciona alloc, asignador se obtiene llamando std::allocator_traits<allocator_type>::select_on_copy_construction(other) .Original:
copy constructor. Constructs the container with the copy of the contents of
other. If alloc is not provided, allocator is obtained by calling std::allocator_traits<allocator_type>::select_on_copy_construction(other).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
mover constructor. Construye el recipiente con el contenido de
5) other utilizando la semántica de movimiento. Si no se proporciona alloc, asignador se obtiene por el movimiento de la construcción desde el asignador perteneciente a other .Original:
move constructor. Constructs the container with the contents of
other using move semantics. If alloc is not provided, allocator is obtained by move-construction from the allocator belonging to other.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
construye el recipiente con el contenido de la lista de inicialización
init . Original:
constructs the container with the contents of the initializer list
init. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
| alloc | - | asignador de usar para todas las asignaciones de memoria de este envase
Original: allocator to use for all memory allocations of this container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| comp | - | comparison function to use for all comparisons of keys |
| first, last | - | el rango a copiar los elementos de
Original: the range to copy the elements from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other | - | otro recipiente para ser utilizado como fuente para inicializar los elementos del recipiente con
Original: another container to be used as source to initialize the elements of the container with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| init | - | lista de inicializadores para inicializar los elementos del recipiente con
Original: initializer list to initialize the elements of the container with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| Type requirements | ||
-InputIt must meet the requirements of InputIterator.
| ||
[editar] Complejidad
| This section is incomplete |
constante
2) Original:
constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
lineal en distancia entre
3) first y lastOriginal:
linear in distance between
first and lastThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
lineal en el tamaño de
4) otherOriginal:
linear in size of
otherThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
constante. Si
5) alloc se da y alloc != other.get_allocator(), lineal entonces .Original:
constant. If
alloc is given and alloc != other.get_allocator(), then linear.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
lineal en el tamaño de
initOriginal:
linear in size of
initThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| asigna valores para el contenedor Original: assigns values to the container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público función) | |