免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4577 | 回复: 2
打印 上一主题 下一主题

[数据结构] c++格式化整型IP为string类型字符串 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-03-05 14:22 |只看该作者 |倒序浏览
本帖最后由 lujian19861986 于 2013-03-05 14:36 编辑

c++格式化整型IP为string类型字符串:

对它进行格式化操作需要用到ostringstream类。
此类提供了一个接口来把string当作输出流来操作。
此类的详细介绍在这里:http://www.cplusplus.com/reference/iostream/ostringstream/
格式化完成之后,用ostringstream::str方法获得此输出流中的string对象。
string str ( ) const;
void str ( const string & s );
示例代码:

  1. #include <string>  
  2. #include <iostream>  
  3. #include <sstream>  
  4. using namespace std;  
  5.       
  6. int main()  
  7. {  
  8.         ostringstream ss;

  9.         int nIP=3232238515;//=192.168.11.179
  10.         ss <<"IP : " <<  ((0xff000000 & nIP) >> 24)  <<"."<<
  11.         << ((0x00ff0000 & nIP) >> 16)   <<"." << ((0x0000ff00 & nIP) >> 8) <<"."<<
  12.                                 (0x000000ff & nIP);

  13.         string str = ss.str();  
  14.       
  15.         // 打印 IP : 192.168.11.179
  16.         // 请按任意键继续. . .  
  17.         cout << str << endl;

  18.               
  19.         system("pause");  
  20.         return 0;  
  21. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2013-03-05 14:30 |只看该作者
本帖最后由 lujian19861986 于 2013-03-05 14:32 编辑
lujian19861986 发表于 2013-03-05 14:22
c++格式化整型IP为string类型字符串:

对它进行格式化操作需要用到ostringstream类。

c code
  1. char IP[64] = "";
  2. snprintf(IP, sizeof(IP), "%u.%u.%u.%u", ((0xff000000 & nIP) >> 24),
  3.         ((0x00ff0000 & nIP) >> 16), ((0x0000ff00 & nIP) >> 8),
  4.         (0x000000ff & nIP));
复制代码

论坛徽章:
0
3 [报告]
发表于 2013-03-06 10:26 |只看该作者
现在我能不用stringstream 就不用stringstream,这东西用起来感觉比sprinf性能差好多。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP