This question already has an answer here:
Pointers golang from string

(1个答案)


4年前关闭。




我有一个仅接受字符串的数据结构,并且我想存储指向另一个数据结构的指针。

本质上,我可以将指针保存为字符串,如下所示:
ptr := fmt.Sprint(&data) // ptr is now something like : 0xc82000a308

然后稍后我想将东西存放在ptr上,是否有办法将此ptr转换为指针类型?

最佳答案

当然,您可以使用不安全的软件包来做到这一点:

https://play.golang.org/p/Wd7hWn9Zsu

package main

import (
    "fmt"
    "strconv"
    "unsafe"
)

func main() {
    //Given:
    data := "Hello"
    ptrString := fmt.Sprintf("%d", &data)

    //Convert it to a uint64
    ptrInt, _ := strconv.ParseUint(ptrString, 10, 64)

    //They should match
    fmt.Printf("Address as String: %s as Int: %d\n", ptrString, ptrInt)

    //Convert the integer to a uintptr type
    ptrVal := uintptr(ptrInt)

    //Convert the uintptr to a Pointer type
    ptr := unsafe.Pointer(ptrVal)

    //Get the string pointer by address
    stringPtr := (*string)(ptr)

    //Get the value at that pointer
    newData := *stringPtr

    //Got it:
    fmt.Println(newData)

    //Test
    if(stringPtr == &data && data == newData) {
        fmt.Println("successful round trip!")
    } else {
        fmt.Println("uhoh! Something went wrong...")
    }
}

但是,请记住不安全包装上的各种警告。例如:

“uintptr是整数,而不是引用。将Pointer转换为uintptr会创建一个没有指针语义的整数值。即使uintptr拥有某个对象的地址,如果对象移动,垃圾收集器也不会更新该uintptr的值,该uintptr也不会阻止该对象被回收。” -https://golang.org/pkg/unsafe/#Pointer

09-27 14:20