dpa0760 2018-11-26 04:21
浏览 155
已采纳

如何获得指针的地址?

package main

import "fmt"

func main() {
   var a int= 20   
   var ip *int    

   ip = &a 

   fmt.Printf("a address: %x
", &a  )

   fmt.Printf(" the adrress that ip stored: %x
", ip )
   /*I try to get the address of variable ip */
   fmt.Printf(" the address of ip: %d
", &ip )

}

go run a.go

result:

a address: c420016078 the adrress that ip stored: c420016078 the address of ip: 842350510120

my question is : is 842350510120 correct address of ip?

  • 写回答

3条回答 默认 最新

  • donglaoping9702 2018-11-26 05:37
    关注

    If you print addresses in a consistent base (hexadecimal), you will see the expected result. In the current versions of the Go gc compiler, the variables i and pi are allocated on the heap.

    For example,

    package main
    
    import "fmt"
    
    func main() {
        var i int = 20
        var pi *int = &i
        fmt.Printf("%x the address of i
    ", &i)
        fmt.Printf("%x the address of pi
    ", &pi)
        fmt.Printf("%x the address that pi stored
    ", pi)
    }
    

    Output:

    c00008e010 the address of i
    c000090018 the address of pi
    c00008e010 the address that pi stored
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 使用X11可以找到托盘句柄,监控到窗口点击事件但是如何在监听的同时获取托盘中应用的上下文菜单句柄
  • ¥15 IEd中开关量采样信号通道设计
  • ¥45 字符串操作——数组越界问题
  • ¥15 Loss下降到0.08时不在下降调整学习率也没用
  • ¥15 QT+FFmpeg使用GPU加速解码
  • ¥15 为什么投影机用酷喵播放电影放一段时间就播放不下去了?提示发生未知故障,有什么解决办法吗?
  • ¥15 来个会搭建付费网站的有偿
  • ¥100 有能够实现人机模式的c/c++代码,有图片背景等,能够直接进行游戏
  • ¥20 校园网认证openwrt插件
  • ¥15 以AT89C51单片机芯片为核心来制作一个简易计算器,外部由4*4矩阵键盘和一个LCD1602字符型液晶显示屏构成,内部由一块AT89C51单片机构成,通过软件编程可实现简单加减乘除。
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部