将指针保存到golang

时间:2016-06-23 20:41:40

标签: pointers go casting

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

我确实可以将指针保存为字符串:

ptr := fmt.Sprint(&data) // ptr is now something like : 0xc82000a308

然后我想在ptr上获取东西商店,有没有办法将这个ptr转换为指针类型?

1 个答案:

答案 0 :(得分:2)

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

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