to_string
Convertit une valeur en string.
string to_string(int Val); string to_string(unsigned int Val); string to_string(long Val); string to_string(unsigned long Val); string to_string(long long Val); string to_string(unsigned long long Val); string to_string(float Val); string to_string(double Val); string to_string(long double Val);
Paramètres
Paramètre |
Description |
---|---|
Val |
Valeur à convertir. |
Valeur de retour
Objet string qui représente la valeur.
Notes
La fonction convertit Val en une séquence d'éléments stockés dans un objet tableau Buf interne à la fonction, comme dans un appel de sprintf(Buf, Fmt, Val), où Fmt est
"%d" si Val est de type int
"%u" si Val est de type unsigned int
"%ld" si Val est de type long
"%lu" si Val est de type unsigned long
"%lld" si Val est de type long long
"%llu" si Val est de type unsigned long long
"%f" si Val est de type float ou double
"%Lf" si Val est de type long double
La fonction retourne string(Buf).
Configuration requise
En-tête : <string>
Espace de noms : std