package main
const N = 1
var n = N
var a byte = 128 << N >> N
var b byte = 128 << n >> n
func main() {
println(a, b)
}
Choices:
Answer: 128 0
Run it on Go play.
Key points:
128 << N >> N
is such an expression.
In this expression, 128
is deduced as an untyped int
value.
128 << n >> n
is a such expression.
In this expression, the type of 128
is deduced as the assumed type, byte
.
128 << n
overflows the value range of byte
, so it is truncated to 0.
This is one small detail in Go programming. Have interests on more ones? Please read Go Details & Tips 101 book.
The Go 101 project is hosted on Github. Welcome to improve Go 101 articles by submitting corrections for all kinds of mistakes, such as typos, grammar errors, wording inaccuracies, description flaws, code bugs and broken links.
If you would like to learn some Go details and facts every serveral days, please follow Go 101's official Twitter account @zigo_101.