Partager via


to_wstring

Convertit une valeur en une chaîne étendue.

wstring to_wstring(int Val); wstring to_wstring(unsigned int Val); wstring to_wstring(long Val); wstring to_wstring(unsigned long Val); wstring to_wstring(long long Val); wstring to_wstring(unsigned long long Val); wstring to_wstring(float Val); wstring to_wstring(double Val); wstring to_wstring(long double Val);

Paramètres

Paramètre

Description

Val

Valeur à convertir.

Valeur de retour

Chaîne étendue 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 swprintf(Buf, Len, Fmt, Val), où Fmt est

  • L"%d" si Val est de type int

  • L"%u" si Val est de type unsigned int

  • L"%ld" si Val est de type long

  • L"%lu" si Val est de type unsigned long

  • L"%lld" si Val est de type long long

  • L"%llu" si Val est de type unsigned long long

  • L"%f" si Val est de type float ou double

  • L"%Lf" si Val est de type long double

La fonction retourne wstring(Buf).

Configuration requise

En-tête : <string>

Espace de noms : std

Voir aussi

Référence

string (<chaîne> C++ STL)

wstring

<string>