Compartilhar via


to_wstring

Converte um valor em uma cadeia de caracteres larga.

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);

Parâmetros

Parâmetro

Descrição

Val

O valor a ser convertido.

Valor de retorno

A cadeia de caracteres larga que representa o valor.

Comentários

A função converte Val em uma sequência de elementos armazenados em um objeto de matriz Buf interna para a função como na chamada de swprintf(Buf, Len, Fmt, Val), em que Fmt será

  • L"%d" se Val tiver o tipo int

  • L"%u" se Val tiver o tipo unsigned int

  • L"%ld" se Val tiver o tipo long

  • L"%lu" se Val tiver o tipo unsigned long

  • L"%lld" se Val tiver o tipo long long

  • L"%llu" se Val tiver o tipo unsigned long long

  • L"%f" se Val tiver o tipo float ou double

  • L"%Lf" se Val tiver o tipo long double

A função retorna wstring(Buf).

Requisitos

Cabeçalho: <string>

Namespace: std

Consulte também

Referência

cadeia de caracteres (C++ STL <cadeia de caracteres>)

wstring

<string>