当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO IP.String用法及代码示例


GO语言"net"包中"IP.String"类型的用法及代码示例。

用法:

func(ip IP) String() string

String 返回 IP 地址 ip 的字符串形式。它返回 4 种形式之一:

- "<nil>", if ip has length 0
- dotted decimal ("192.0.2.1"), if ip is an IPv4 or IP4-mapped IPv6 address
- IPv6 conforming to RFC 5952 ("2001:db8::1"), if ip is a valid IPv6 address
- the hexadecimal form of ip, without punctuation, if no other cases apply

例子:

package main

import (
	"fmt"
	"net"
)

func main() {
	ipv6 := net.IP{0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
	ipv4 := net.IPv4(10, 255, 0, 0)

	fmt.Println(ipv6.String())
	fmt.Println(ipv4.String())

}

输出:

fc00::
10.255.0.0

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 IP.String。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。