std::strtof, std::strtod, std::strtold
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. |
<metanoindex/>
<tbody> </tbody>| Dclar dans l'en-tte <cstdlib>
|
||
float strtof( const char* str, char** str_end ); |
(depuis C++11) | |
double strtod( const char* str, char** str_end ); |
||
long double strtold( const char* str, char** str_end ); |
(depuis C++11) | |
Interprter une valeur virgule flottante en une chane d'octets pointe par
str .Original:
Interprets a floating point value in a byte string pointed to by
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 caractres blancs (tel que dtermin par
std::isspace()) jusqu'au premier caractre non-blanc est trouv. Ensuite, il faut autant de caractres que possible pour former une reprsentation 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.
- dcimal expression en virgule flottante. Il se compose des lments 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. - squence non vide de chiffres dcimaux contenant ventuellement un point dcimal (dfinit 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)
eouEsuivi avec moins optionnels ou signe plus et la squence non vide de chiffres dcimaux (dfinit exposant)Original:(en option)eorEfollowed 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 lments 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. 0xor0X- squence non vide de chiffres hexadcimaux contenant ventuellement un point dcimal (dfinit 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)
pouPsuivi avec moins optionnels ou signe plus et la squence non vide de chiffres hexadcimaux (dfinit exposant)Original:(en option)porPfollowed 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 lments 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. INFouINFINITYignorant la casseOriginal:INForINFINITYignoring 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 lments 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. NANouNAN(' char_sequence)en ignorant la casse de la partieNAN. Char_sequence' ne peut contenir que des caractres alphanumriques. Le rsultat est une valeur virgule flottante NaN calme .Original:NANorNAN(char_sequence)ignoring case of theNANpart. 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.
Les fonctions dfinit le pointeur point par
str_end pour pointer vers le caractre pass le dernier caractre interprt. Si str_end est NULL, il est ignor .Original:
The functions sets the pointer pointed to by
str_end to point to the character past the last character interpreted. If str_end is NULL, 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.
Paramtres
| str | - | pointeur vers la chane d'octets termine par NULL doit tre interprt
Original: pointer to the null-terminated byte string to be interpreted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| str_end | - | pointeur vers un pointeur sur caractre .
Original: pointer to a pointer to character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
Flottant valeur du point correspondant au contenu de
str en cas de succs. Si la valeur convertie tombe hors de la plage de type de retour correspondante, une erreur se produit et HUGE_VAL gamme, HUGE_VALF ou HUGE_VALL est retourn. Si aucune conversion peut tre effectue, 0 est retourn .Original:
Floating point value corresponding to the contents of
str on success. If the converted value falls out of range of corresponding return type, range error occurs and HUGE_VAL, HUGE_VALF or HUGE_VALL is returned. If no conversion can be performed, 0 is returned.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.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
convertit une chane d'octets en une valeur virgule flottante Original: converts a byte string to a 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. (fonction) | |
C documentation for strtof, strtod, strtold
| |