shaoyuanhangyes / gitalk

This repository is a storage saving web-blog https://shaoyuanhangyes.github.io issues
https://shaoyuanhangyes.github.io
0 stars 0 forks source link

Go基本语法 | shaoyuanhangyes #22

Open shaoyuanhangyes opened 4 years ago

shaoyuanhangyes commented 4 years ago

https://shaoyuanhangyes.github.io/2020/07/19/Go%E5%9F%BA%E6%9C%AC%E8%AF%AD%E6%B3%95/#more

Go基本语法声明变量12345678//直接声明var name string = "Ruojhen"var id int = 123var name = "shaoyuanhang@outlook.com" //不指定类型声明 靠编译器自动识别/但编译器自动识别会产生我们不需要的效果 例如: /var decimal = 0.06 //因为右值带有小数点 所以在不指定类型的情况下 编译器将这