GO基礎深刻總結

GO的關鍵字:
包管理:package、import
變量:var、map、struct、interface、const、type
函數:func、return、defer
循環:if、else、switch、case、fallthought、default、for、break、continue、goto、range
併發:go、chan、select數組

GO的變量類型:
(1)整型
int(默認)、int八、int1六、int3二、int6四、byte
uint、uint八、uint1六、uint3二、uint64
(2)浮點型:float3二、float64(默認)
(3)複數:complex6四、complex128(默認)
(4)數組:值拷貝、不一樣長度和不一樣類型的數組都是一個新類型
(5)切片:引用
(6)map:引用
(7)複合類型:interface、struct併發

GO的內置函數:append、cap、new、make、copy、len、delete、panic、recover
(1)append:向切片中添加一個或多個值app

// 注意:有個潛在的問題,看下面的代碼
package main函數

import "fmt"ui

func main() {it

相關文章
相關標籤/搜索