`
mylove2060
  • 浏览: 331003 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

数据格式定义

阅读更多
#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;
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics