to_string
将值转换为 string。
string to_string(long long _Val);
string to_string(unsigned long long _Val);
string to_string(long double _Val);
参数
Parameter |
说明 |
---|---|
_Val |
要转换的值。 |
返回值
表示该值的 string。
备注
函数将 _Val 转换为对函数的数组对象存储的元素序列内部的 _Buf,就象通过调用 sprintf(_Buf, _Fmt, _Val),_Fmt 是 "%lld",如果 _Val 具有类型 long long、"%llu",如果 _Val 具有类型 unsigned long long,或者 "%Lg",如果 _Val 具有类型 long double。 函数返回 string(_Buf)。
要求
标头: <string>
命名空间: std