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