gpt4 book ai didi

c++ - 如何在 C++ 中将整数转换为十六进制 wstring

转载 作者:太空狗 更新时间:2023-10-29 23:54:05 26 4
gpt4 key购买 nike

如何在C++中将整数转换为十六进制std::wstring?

最佳答案

与窄字符串相同:

#include <iomanip>
#include <sstream>

//...

std::wostringstream oss; // note the 'w'
oss << std::hex << n;

return oss.str(); // type is std::wstring

关于c++ - 如何在 C++ 中将整数转换为十六进制 wstring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7970075/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com