dsfdf854456 2012-10-14 10:03
浏览 45
已采纳

直接在Go中的堆上构造基本类型?

How do I construct a primitive integer type directly on the heap in Go?

For composite literals, the following syntax is supported:

return &File{fd, name, nil, 0}

But no such equivalent seems to exist for int and friends:

Size: &uint64(entry.FileInfo.Size()),

d:\gopath\src\bitbucket.org\anacrolix\dms\dlna\dms\dms.go:271: cannot take the address of uint64(entry.FileInfo.Size())

  • 写回答

2条回答 默认 最新

  • douxing2652 2012-10-14 12:23
    关注

    Address operators

    For an operand x of type T, the address operation &x generates a pointer of type *T to x. The operand must be addressable, that is, either a variable, pointer indirection, or slice indexing operation; or a field selector of an addressable struct operand; or an array indexing operation of an addressable array. As an exception to the addressability requirement, x may also be a composite literal.

    Primitive integer types are not addressable. If the integer is a register variable, there is no memory address. If the integer is a constant, providing its memory address would allow it to be modified.

    Therefore, create an integer type variable and take its address or use an integer pointer type. For example,

    package main
    
    import "fmt"
    
    func main() {
        var i int = 42
        var pi = &i
        j := int(7)
        pj := &j
        var pk = new(int)
        k := *pk
        fmt.Println(i, pi)
        fmt.Println(j, pj)
        fmt.Println(k, pk)
    }
    

    Output:

    42 0xf840043100
    7 0xf840043108
    0 0xf840043110
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 unity第一人称射击小游戏,有demo,在原脚本的基础上进行修改以达到要求
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line