linux c/c++ IP字符串轉換成可比較大小的數字

由www.169it.com蒐集整理 html

IP字符串轉換成可比較大小的數字,具體代碼以下所示:linux

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stdio.h"
#include "arpa/inet.h"
#include
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字符串轉換成可比較大小的數字c++

相關文章
相關標籤/搜索