为什么Go语言使用^而不是~作为一元位取反运算符?

huangapple go评论86阅读模式
英文:

Why does Go use ^ rather than ~ for unary bitwise-not?

问题

大多数编程语言使用~来表示一元位非操作。相比之下,Go语言使用^

fmt.Println(^1)  // 输出 -2

为什么Go语言的设计者决定在这里与传统不同呢?

英文:

Most programming languages use ~ to represent a unary bitwise-not operation. Go, by contrast, uses ^:

fmt.Println(^1)  // Prints -2

Why did the Go designers decide to break with convention here?

答案1

得分: 10

因为对于无符号的 x,^x 等同于 m ^ x,其中 m = “所有位都设置为1”,对于有符号的 x,m = -1。在规范中有说明

这类似于 -x 等于 0 - x。

英文:

Because ^x is equivalent to m ^ x with m = "all bits set to 1" for unsigned x and m = -1 for signed x. Says so in the spec.

It's similar to how -x is 0 - x

huangapple
  • 本文由 发表于 2016年3月25日 10:15:33
  • 转载请务必保留本文链接:https://go.coder-hub.com/36213035.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定