cpp/numeric/valarray/resize : Différence entre versions
De cppreference.com
m (r2.7.3) (robot Ajoute : de, en, es, it, ja, pt, ru, zh) |
m (Use {{lc}}. Update links. Various fixes.) |
||
Ligne 13 : | Ligne 13 : | ||
===Paramètres=== | ===Paramètres=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| count |{{tr| nouvelle taille du récipient| new size of the container}}}} |
− | {{ | + | {{| value |{{tr| la valeur pour initialiser les éléments nouveaux | the value to initialize the new elements with }}}} |
− | {{ | + | {{end}} |
===Retourne la valeur=== | ===Retourne la valeur=== | ||
Ligne 28 : | Ligne 28 : | ||
===Voir aussi=== | ===Voir aussi=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| cpp/numeric/valarray/size}} |
− | {{ | + | {{end}} |
[[de:cpp/numeric/valarray/resize]] | [[de:cpp/numeric/valarray/resize]] |
Version actuelle en date du 2 juillet 2013 à 05:42
![]() |
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. |
void resize( std::size_t count, T value = T() ); |
||
Redimensionne l'valarray pour contenir les éléments
count
.Original:
Resizes the valarray to contain
count
elements.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.
Si la taille actuelle est inférieure à
count
, des éléments supplémentaires sont ajoutés et initialisé avec value
.Original:
If the current size is less than
count
, additional elements are appended and initialized with value
.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.
Si la taille actuelle est supérieure à
count
, le valarray est réduite à ses éléments count
premier .Original:
If the current size is greater than
count
, the valarray is reduced to its first count
elements.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.
Sommaire |
[modifier] Paramètres
count | - | nouvelle taille du récipient
Original: new size of the container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
value | - | la valeur pour initialiser les éléments nouveaux
Original: the value to initialize the new elements with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Retourne la valeur
(Aucun)
Original:
(none)
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.
[modifier] Exemple
This section is incomplete Reason: no example |
[modifier] Voir aussi
renvoie la taille du valarray Original: returns the size of valarray The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre publique) |