duanhan1392 2016-06-02 04:12
浏览 381
已采纳

Golang:二进制补码和fmt.Printf

So computers use Two's complement to internally represent signed integers. I.e., -5 is represented as ^5 + 1 = "1111 1011".

However, trying to print the binary representation, e.g. the following code:

var i int8 = -5
fmt.Printf("%b", i)

Outputs -101. Not quite what I'd expect. Is the formatting different or is it not using Two's complement after all?

Interestingly, converting to an unsigned int results in the "correct" bit pattern:

var u uint8 = uint(i)
fmt.Printf("%b", u)

Output is 11111011 - exactly the 2s complement of -5.

So it seems to me the value is internally the really using Two's complement, but the formatting is printing the unsigned 5 and prepending a -.

Can somebody clarify this?

  • 写回答

2条回答 默认 最新

  • dongma7796 2016-06-02 04:46
    关注

    I believe the answer lies in how the fmt module formats binary numbers, rather than the internal format.

    If you take a look at fmt.integer, one of the very first actions that the function does is to convert the negative signed integer to a positive one:

       165      negative := signedness == signed && a < 0
       166      if negative {
       167          a = -a
       168      }
    

    There's then logic to append - in front of the string that's output here.

    IOW -101 really is - appended to 5 in binary.

    Note: fmt.integer is called from pp.fmtInt64 in print.go, itself called from pp.printArg in the same function.

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

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料