标签:style http ar io color sp on div art
IP字符串转换成可比较大小的数字,具体代码如下所示: 本文由www.169it.com搜集整理
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "stdio.h"
#include "arpa/inet.h"
#include <string>
using
namespace
std;
// linux c/c++ IP字符串转换成可比较大小的数字
// g++ -o test_ip_unsigned test_ip_unsigned.cpp
int
main(
int
argc,
char
*argv[])
{
string ip=
"192.168.1.123"
;
unsigned
int
x=ntohl(inet_addr(ip.c_str()));
unsigned
int
y=(unsigned
int
)192*256*256*256+168*256*256+256+123;
printf
(
"x=[%u] ip un[%u]\r\n"
,x,y);
return
1;
}
|
文章来源:linux c/c++ IP字符串转换成可比较大小的数字
标签:style http ar io color sp on div art
原文地址:http://my.oschina.net/u/1766067/blog/357223