Udostępnij za pośrednictwem


to_string

Konwertuje wartość na string.

string to_string(long long _Val);
string to_string(unsigned long long _Val);
string to_string(long double _Val);

Parametry

Parametr

Opis

_Val

Wartość do konwersji.

Wartość zwracana

string , Reprezentuje wartość.

Uwagi

Funkcja konwertuje _Val z elementów przechowywanych w obiekcie array sekwencji _Buf wewnętrznych funkcji tak, jakby przez wywołanie sprintf(_Buf, _Fmt, _Val), gdzie _Fmt jest "%lld" Jeśli _Val ma typ long long, "%llu" Jeśli _Val ma typ unsigned long long, lub "%Lg" Jeśli _Val ma typ long double.Funkcja zwraca string(_Buf).

Wymagania

Nagłówek: <string>

Obszar nazw: std

Zobacz też

Informacje

string (<string>)

wstring

<string>