常量
数值常量是高精度数值。常量虽然没有指定类型,却可以根据实际情况采用合适类型,保证精度够用。
/_src/tour/numeric-constants.go
- package main
- import "fmt"
- const (
- // Create a huge number by shifting a 1 bit left 100 places.
- // In other worlds, the binary number that is 1 followed by 100 zeros.
- // Shift it right again 99 places, so we end up with 1<<1, or 2.
- Small = Big >> 99
- )
- func needInt(x int) int { return x*10 + 1 }
- return x * 0.1
- }
- func main() {
- fmt.Println(needInt(Small))
- fmt.Println(needFloat(Small))
- fmt.Println(needFloat(Big))
- }
下一步
我们一起来看看 Go 语言 for 语句 。
小菜学编程