本文实例讲述了go语言版的ip2long函数。分享给大家供大家参考。具体分析如下:
这里介绍的go语言版的ip2long 函数不会对 IP 的合法性进行校验。
复制代码 代码如下:
// 注意: 该函数不会对 IP 的合法性进行校验
func Ip2Long(ip string) (ips string) {
var ip_pieces = strings.Split(ip, ".")
ip_1, _ := strconv.ParseInt(ip_pieces[0], 10, 32)
ip_2, _ := strconv.ParseInt(ip_pieces[1], 10, 32)
ip_3, _ := strconv.ParseInt(ip_pieces[2], 10, 32)
ip_4, _ := strconv.ParseInt(ip_pieces[3], 10, 32)
var ip_bin string = fmt.Sprintf("%08b%08b%08b%08b", ip_1, ip_2, ip_3, ip_4)
ip_int, _ := strconv.ParseInt(ip_bin, 2, 64)
return
}
希望本文所述对大家的Go语言程序设计有所帮助。
您可能感兴趣的文章:- golang实现unicode转换为字符串string的方法
- Golang学习笔记(六):struct
- 简单了解Go语言中函数作为值以及函数闭包的使用
- Go语言中函数的参数传递与调用的基本方法
- 举例详解Go语言中os库的常用函数用法
- Go语言的os包中常用函数初步归纳
- Go语言常见哈希函数的使用
- Go语言里的new函数用法分析
- Go语言截取字符串函数用法
- Go语言中append函数用法分析
- GO语言延迟函数defer用法分析
- Go语言中的流程控制结构和函数详解
- golang中strconv.ParseInt函数用法示例