std::stof, std::stod, std::stold
De cppreference.com
< cpp | string | basic string
![]() | 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. |
Déclaré dans l'en-tête <string> | ||
float stof(conststd::string& str, size_t *pos =0); | (1) | (depuis C++11) |
double stod(conststd::string& str, size_t *pos =0); | (2) | (depuis C++11) |
longdouble stold(conststd::string& str, size_t *pos =0); | (3) | (depuis C++11) |
Interpréter une valeur à virgule flottante dans un
str
chaîne . Original:
Interprets a floating point value in a string
str
. 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.
Fonction supprime les caractères blancs (tel que déterminé par std::isspace()) jusqu'au premier caractère non-blanc est trouvé. Ensuite, il faut autant de caractères que possible pour former une représentation en virgule flottante valide et les convertit en valeur à virgule flottante. La valeur du point flottante valide peut être l'un des suivants:
Original:
Function discards any whitespace characters (as determined by std::isspace()) until first non-whitespace character is found. Then it takes as many characters as possible to form a valid floating point representation and converts them to floating point value. The valid floating point value can be one of the following:
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.
- décimal expression en virgule flottante. Il se compose des éléments suivants:Original:decimal floating point expression. It consists of the following parts:The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- (en option) signe plus ou moinsOriginal:(en option) plus or minus signThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - séquence non vide de chiffres décimaux contenant éventuellement un point décimal (définit mantisse)Original:nonempty sequence of decimal digits optionally containing a decimal point character (defines significand)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - (en option)
e
ouE
suivi avec moins optionnels ou signe plus et la séquence non vide de chiffres décimaux (définit exposant)Original:(en option)e
orE
followed with optional minus or plus sign and nonempty sequence of decimal digits (defines exponent)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- expression binaire à virgule flottante. Il se compose des éléments suivants:Original:binary floating point expression. It consists of the following parts:The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- (en option) signe plus ou moinsOriginal:(en option) plus or minus signThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. 0x
or0X
- séquence non vide de chiffres hexadécimaux contenant éventuellement un point décimal (définit mantisse)Original:nonempty sequence of hexadecimal digits optionally containing a decimal point character (defines significand)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - (en option)
p
ouP
suivi avec moins optionnels ou signe plus et la séquence non vide de chiffres hexadécimaux (définit exposant)Original:(en option)p
orP
followed with optional minus or plus sign and nonempty sequence of hexadecimal digits (defines exponent)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- l'infini expression. Il se compose des éléments suivants:Original:infinity expression. It consists of the following parts:The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- (en option) signe plus ou moinsOriginal:(en option) plus or minus signThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. INF
ouINFINITY
ignorant la casseOriginal:INF
orINFINITY
ignoring caseThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- un nombre non-expression. Il se compose des éléments suivants:Original:not-a-number expression. It consists of the following parts:The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- (en option) signe plus ou moinsOriginal:(en option) plus or minus signThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. NAN
ouNAN(
' char_sequence)
en ignorant la casse de la partieNAN
. Char_sequence' ne peut contenir que des caractères alphanumériques. Le résultat est une valeur à virgule flottante NaN calme .Original:NAN
orNAN(
char_sequence)
ignoring case of theNAN
part. char_sequence can only contain alphanumeric characters. The result is a quiet NaN floating point value.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
L'indice du premier caractère non converti est stocké dans
pos
. Si NULL est passé comme pos
, il est ignoré .Original:
The index of the first unconverted character is stored in
pos
. If NULL is passed as pos
, it is ignored.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
str | - | la chaîne à convertir Original: the string to convert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
pos | - | traiter de nombre entier pour stocker l'index du premier caractère non converti Original: address of integer to store the index of the first unconverted character 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
La chaîne convertie vers le type spécifié en virgule flottante .
Original:
The string converted to the specified floating point type.
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]Exceptions
std::invalid_argument si aucune conversion peut être effectuée
Original:
std::invalid_argument if no conversion could be performed
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.
std::out_of_range si la valeur convertie tomberait hors de la plage du type de résultat .
Original:
std::out_of_range if the converted value would fall out of the range of the result type.
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]Voir aussi
(C++11) (C++11) (C++11) | convertit une chaîne en un entier signé Original: converts a string to an signed integer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
(C++11) (C++11) | convertit une chaîne en un entier non signé Original: converts a string to an unsigned integer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |