Return pointer to local struct

后端 未结 2 572
深忆病人
深忆病人 2020-11-30 23:55

I see some code samples with constructs like this:

type point struct {
  x, y int
}

func newPoint() *point {
  return &point{10, 20}
}

相关标签:
2条回答
  • 2020-12-01 00:17

    Go performs pointer escape analysis. If the pointer escapes the local stack, which it does in this case, the object is allocated on the heap. If it doesn't escape the local function, the compiler is free to allocate it on the stack (although it makes no guarantees; it depends on whether the pointer escape analysis can prove that the pointer stays local to this function).

    0 讨论(0)
  • 2020-12-01 00:28

    The Golang "Documentation states that it's perfectly legal to return a pointer to local variable." As I read here

    https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/EYUuead0LsY

    I looks like the compiler sees you return the address and just makes it on the heap for you. This is a common idiom in Go.

    0 讨论(0)
提交回复
热议问题