dreljie602951 2017-10-28 07:55
浏览 44
已采纳

在Go中处理悬空指针

I have been reading Rust and Go in parallel and I see subtle differences in how both these languages deal with dangling pointers and the problems it causes. For example, here is a version in Rust:

fn main() {
    let reference_to_nothing = dangle();
}

fn dangle() -> &String {
    let s = String::from("hello");

    &s
}

The above would error out saying that in the function dangle, s goes out of scope and I cannot return a reference to it! But in Go, this seems to be sort of allowed?

How is such a thing handled in Go? Is it easy to create dangling pointers in Go? If so what measures do I have to control them?

  • 写回答

1条回答 默认 最新

  • dqan70724 2017-10-28 08:16
    关注

    In Go, dangling pointers are not a thing, due to the way how escape analysis works. Suppose you have a code like this:

    func CreateUser(name string) *User {
        return &User{Name: name}
    }
    

    The compiler will understand that because the pointer can be accessed after the function exits, the structure should be allocated on heap. As Effective Go says:

    Note that, unlike in C, it's perfectly OK to return the address of a local variable; the storage associated with the variable survives after the function returns.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作