码迷,mamicode.com
首页 > 其他好文 > 详细

Hex string convert to integer with stringstream

时间:2014-10-09 14:17:23      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:io   os   c   on   r   as   type   ios   d   

#include <sstream>
#include <iostream>
int main() {
unsigned int x;
std::stringstream ss;
ss << std::hex << "FF";
ss >> x;
// output it as a signed type
std::cout << static_cast<int>(x) << std::endl;
}

Hex string convert to integer with stringstream

标签:io   os   c   on   r   as   type   ios   d   

原文地址:http://www.cnblogs.com/lidabo/p/4012283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!