#include "stdafx.h"
#include <sstream>
#include <iomanip>
#include <string>
int main(void)
{
std::ostringstream oStringStream;
oStringStream << std::setw(8) << std::hex << 23;
std::string str = oStringStream.str(); //占8字符空间:" 17
return 0;
}
数据格式定义
最新推荐文章于 2022-11-20 00:53:44 发布