Chinaunix

标题: c++格式化整型IP为string类型字符串 [打印本页]

作者: lujian19861986    时间: 2013-03-05 14:22
标题: c++格式化整型IP为string类型字符串
本帖最后由 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. }
复制代码

作者: lujian19861986    时间: 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));
复制代码

作者: hmsghnh    时间: 2013-03-06 10:26
现在我能不用stringstream 就不用stringstream,这东西用起来感觉比sprinf性能差好多。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2