dongzhuo1733 2018-02-08 13:34
浏览 104
已采纳

cgo结果有指针

I am writing some go code that exports a function like that:

package main
import "C"

//export returnString
func returnString() string {
    //
    gostring := "hello world"
    return gostring
}
func main() {}

I build the .so and the header file by using go build -buildmode=c-shared, but when I call returnString() in my C code, I get "panic: runtime error: cgo result has Go pointer"

Is there a way to to this in go 1.9?

  • 写回答

1条回答 默认 最新

  • dongtan6336 2018-02-08 13:47
    关注

    You need to convert your go string to *C.char. C.Cstring is utility function for that.

    package main
    
    import "C"
    
    //export returnString
    func returnString() *C.char {
        gostring := "hello world"
        return C.CString(gostring)
    }
    
    func main() {}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?