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 );
示例代码:
#include <string>
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
ostringstream ss;
int nIP=3232238515;//=192.168.11.179
ss <<"IP : " << ((0xff000000 & nIP) >> 24) <<"."<<
<< ((0x00ff0000 & nIP) >> 16) <<"." << ((0x0000ff00 & nIP) >> 8) <<"."<<
(0x000000ff & nIP);
string str = ss.str();
// 打印 IP : 192.168.11.179
// 请按任意键继续. . .
cout << str << endl;
system("pause");
return 0;
}
复制代码
作者:
lujian19861986
时间:
2013-03-05 14:30
本帖最后由 lujian19861986 于 2013-03-05 14:32 编辑
lujian19861986 发表于 2013-03-05 14:22
c++格式化整型IP为string类型字符串:
对它进行格式化操作需要用到ostringstream类。
c code
char IP[64] = "";
snprintf(IP, sizeof(IP), "%u.%u.%u.%u", ((0xff000000 & nIP) >> 24),
((0x00ff0000 & nIP) >> 16), ((0x0000ff00 & nIP) >> 8),
(0x000000ff & nIP));
复制代码
作者:
hmsghnh
时间:
2013-03-06 10:26
现在我能不用stringstream 就不用stringstream,这东西用起来感觉比sprinf性能差好多。
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2