这个问题已经有了答案:
How do I dereference a pointer in Go?
1答
我有一个类型为ip的net.ip变量*net.IP,我将它传递给一个只接受net.IP的查找函数,得到错误;

cannot use ip (type *net.IP) as type net.IP in argument to Lookup

最佳答案

这就是我在评论中添加的代码。罗比的暗示

package main

import (
    "fmt"
)

func derefPointer(importantType *int) {
    fmt.Println(*importantType)
}

func main() {
    important := 1
    derefPointer(&important)
}

https://gobyexample.com/pointers

关于go - 如何将指针值转换为原始值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58067078/

10-16 23:19