码迷,mamicode.com
首页 > 其他好文 > 详细

Qt 中 IPv4 字符串和 int 整形的相互转换

时间:2020-01-08 20:37:19      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:turn   div   detail   lis   ons   csdn   tps   article   int   

int 型 IPv4 值转换为 IPv4 字符串:

1 QString IPV4IntegerToString(quint32 ip) {
2     return QString("%1.%2.%3.%4")
3             .arg((ip >> 24) & 0xFF)
4             .arg((ip >> 16) & 0xFF)
5             .arg((ip >> 8) & 0xFF)
6             .arg(ip & 0xFF);
7 }

IPv4 字符串转换为 int 型 IPv4 值:

 1 quint32 IPV4StringToInteger(const QString& ip){
 2     QStringList ips = ip.split(".");
 3     if(ips.size() == 4){
 4         return ips.at(3).toInt()
 5                 | ips.at(2).toInt() << 8
 6                 | ips.at(1).toInt() << 16
 7                 | ips.at(0).toInt() << 24;
 8     }
 9     return 0;
10 } 

转自:https://blog.csdn.net/wangmike19/article/details/102501684

Qt 中 IPv4 字符串和 int 整形的相互转换

标签:turn   div   detail   lis   ons   csdn   tps   article   int   

原文地址:https://www.cnblogs.com/liushui-sky/p/12168626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!