[AD] -- 下方为内容广告,点击支持作者,想过滤广告? -- [AD]
「代码片段」 bin2hex
std::string bin2hex(const std::string &input)
{
std::string res;
const char hex[] = "0123456789ABCDEF";
for (auto sc : input)
{
unsigned char c = static_cast<unsigned char>(sc);
res += hex[c >> 4];
res += hex[c & 0xf];
}
return res;
}
[AD] -- 下方为内容广告,点击支持作者,想过滤广告? -- [AD]