to_string
Converte um valor em uma 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);
Parâmetros
Parâmetro |
Descrição |
---|---|
Val |
O valor a ser convertido. |
Valor de retorno
A string 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 sprintf(Buf, Fmt, Val), em que Fmt será
"%d" se Val tiver o tipo int
"%u" se Val tiver o tipo unsigned int
"%ld" se Val tiver o tipo long
"%lu" se Val tiver o tipo unsigned long
"%lld" se Val tiver o tipo long long
"%llu" se Val tiver o tipo unsigned long long
"%f" se Val tiver o tipo float ou double
"%Lf" se Val tiver o tipo long double
A função retorna string(Buf).
Requisitos
Cabeçalho: <string>
Namespace: std