已采纳回答 / 卜夋
常量是不可改变的量,一经定义就不可更改,变量分为局部变量和全局变量,主要是作用域不同。局部变量只能在函数体或者说作用域内使用,全局变量可以在全局使用。希望我说清楚了。
2019-05-27
我觉得后面关于“类型存储大小”的介绍那张图,不应该那样画。int存储大小是128位,“123”这个值存进去之后,其实还有5个位是空的
2019-05-26
最赞回答 / Leon_SK
In Go, enumerated constants are created using the iota enumerator. Since iota can be part of an expression and expressions can be implicitly repeated, it is easy to build intricate sets of values.Here is one example I found, hope it might be useful for yo...
2019-05-05