doudiewen9435 2018-05-19 15:43
浏览 48
已采纳

net.IP作为golang中的映射密钥类型?

I have map with key as net.IP and value as a channel. But I'm getting a weird compile time error (invalid map key type)

17 type UdpServer struct {
18     ListenPort int
19
20     ConnRef *net.UDPConn
21     Log_ref *Logger
22     MapOfValues map[net.IP]chan string
23 }


$ go build c-manager.go
cmanager/c-udp_server.go:22:14: invalid map key type net.IP

$ go version
  go version go1.10.2 linux/amd64

What am I doing wrong? Can't we have net.IP as map key type?

  • 写回答

1条回答 默认 最新

  • dsuikgi9199 2018-05-19 16:02
    关注

    A net.IP is a slice type. Because slices are mutable, they cannot be used as map keys. Use a string as the key type:

    MapOfValues map[string]chan string
    

    Use a type conversion to convert from net.IP to string and back. Use IP.To16 to normalize addresses to the 16 byte representation.

    x.MapOfValues[string(ip.To16())] = v
    
    for k, v := range x.MapOfValues {
       ip := net.IP(k) // convert string to net.IP
       ...
    }
    

    If you want the keys to be printable, then use the IP.String and net.ParseIP functions to do the conversions:

    x.MapOfValues[ip.String()] = v
    
    for k, v := range x.MapOfValues {
       ip := net.ParseIP(k) 
       ...
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误