stof
Convertit une séquence de caractères à un float.
float stof(
const string& _Str,
size_t *_Idx = 0
);
float stof(
const wstring& _Str,
size_t *_Idx = 0
);
Paramètres
Paramètre |
Description |
---|---|
_Str |
La séquence de caractères à convertir. |
_Idx |
La valeur d'index du premier caractère inconverti. |
Valeur de retour
La valeur float.
Notes
La fonction convertit la séquence d'éléments dans _Str à une valeur _Val de type float comme si en appelant strtof(_Str.c_str(), _Eptr), où _Eptr est un objet interne à la fonction.Si _Str.c_str() == *_Eptr il lève un objet de type invalid_argument.Si un appel placerait errno, il lève un objet de type out_of_range.Sinon, si _Idx n'est pas un pointeur null, les mémoires *_Eptr - _Str.c_str() de fonction dans *_Idx et retourne _Val.
Configuration requise
en-tête : <string>
l'espace de noms : DST