博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux c/c++ IP字符串转换成可比较大小的数字
阅读量:5098 次
发布时间:2019-06-13

本文共 513 字,大约阅读时间需要 1 分钟。

由www.169it.com搜集整理 

IP字符串转换成可比较大小的数字,具体代码如下所示:

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;
}

 

 文章来源:

转载于:https://www.cnblogs.com/besty/p/4069904.html

你可能感兴趣的文章
pring MVC过滤器-HttpPutFormContentFilter
查看>>
Linux之ulimit详解(整理)
查看>>
前端学习blog
查看>>
自己常用网址导航
查看>>
Texstudio中文乱码问题
查看>>
[MongoDB]入门笔记
查看>>
网站防止CC攻击的方法
查看>>
SharePoint 2013 工作流之使用Designer配置示例篇
查看>>
Photoshop cs6 快捷键命令大全
查看>>
蓝桥杯 九宫格 基础bfs+康托展开
查看>>
Airtest Project的探索和使用
查看>>
mapreduce深入剖析5大视频
查看>>
python之sys.stdout、sys.stdin
查看>>
MyEclipse 2014GA 新建 Web Project 并配置 SSH
查看>>
【转】oc中的类方法与对象方法
查看>>
Java代码优化
查看>>
win2008 R2 64位系统下配置DCOM权限
查看>>
iframe与主框架跨域相互访问方法
查看>>
css学习浮动详解
查看>>
使用jstl标签报错:According to TLD or attribute directive in tag file, attribute value
查看>>