Update 02.2.md

This commit is contained in:
astaxie
2013-09-27 14:15:16 +08:00
parent 67414645f4
commit ead21b1f7c

View File

@@ -78,8 +78,8 @@ Go对于已声明但未使用的变量会在编译阶段报错比如下面的
const MaxThread = 10
const prefix = "astaxie_"
Go 常量和一般程式語言不同的是,可以指定相多的小數位數(例如200位)
若指定給float32自動縮短為32bit指定float64自動縮短為64bit詳情參考[連結](http://golang.org/ref/spec#Constants)
Go 常量和一般程序语言不同的是,可以指定相多的小数位数(例如200位)
若指定給float32自动缩短为32bit指定float64自动缩短为64bit详情参考[链接](http://golang.org/ref/spec#Constants)
## 内置基础类型