# go-study **Repository Path**: xh_go/go-study ## Basic Information - **Project Name**: go-study - **Description**: go-study - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-03 - **Last Updated**: 2024-04-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # go-study # 一、基础信息 - [资源](md/001base/001resources/resources.md) - [go 语言 windows 环境安装](md/001base/003install-go/install-go.md) - [go 语言 ubuntu 环境安装](md/001base/004install-go-ubuntu/install-go-ubuntu.md) - [goland 使用](md/001base/006goland/goland.md) - [第一个 go 程序](md/001base/007first-go-code/first-go-code.md) # go mod - [介绍以及使用](md/011go-mod/001go-mod-base/go-mod-base.md) - [multi-module workspaces(多模块工作目录)](md/011go-mod/002multi-module-workspaces/multi-module-workspaces.md) # 二、语法基础 - [注释](md/002syntax-base/001note/note.md) - [变量](md/002syntax-base/002variable/variable.md) - [常量](md/002syntax-base/003constant/constant.md) - [运算符](md/002syntax-base/004operator/operator.md) - [输出](md/002syntax-base/005print/print.md) - [输入](md/002syntax-base/006scanf/scanf.md) - [随机数](md/002syntax-base/007rand/rand.md) # 三、数据类型 - [自动类型推导](md/003data-type/001auto-type-derivation/auto-type-derivation.md) - [整形](md/003data-type/002int/int.md) - [浮点型](md/003data-type/003float/float.md) - [boolean 型](md/003data-type/004boolean/boolean.md) - [字符](md/003data-type/005char/char.md) - [强制类型转换](md/003data-type/007force-data-type-convert/force-data-type-convert.md) # 四、条件控制 - [if](md/004condition/001if/if.md) - [switch](md/004condition/002switch/switch.md) - [for](md/004condition/003for/for.md) - [while](md/004condition/004while/while.md) # 五、函数 - [普通函数](md/005func/001common-func/common-func.md) - [不定参数(变长参数)](md/005func/002variable-length-arguments/variable-length-arguments.md) - [函数的返回值](md/005func/003return-val/return-val.md) - [函数类型](md/005func/004func-type/func-type.md) - [函数的作用域](md/005func/005func-scope/func-scope.md) - [匿名函数](md/005func/006anonymous-func/anonymous-func.md) # 六、容器 - [数组](md/006container/001array/array.md) - [二维数组](md/006container/002two-dimensional-array/two-dimensional-array.md) - [切片](md/006container/003slice/slice.md) - [map]() # 七、字符串 - [字符串](md/007string/001string/string.md) - [strings](md/007string/002strings/strings.md) - [字符串类型转换](md/007string/003str-conv/str-conv.md) # 八、map - [map 介绍与创建](md/008map/001map/map.md) - [函数作为 map 的 value ](md/008map/002func-as-map-value/func-as-map-value.md) - [map 的一些操作(遍历、是否包含、等)](md/008map/003map-operate/map-operate.md) - [map 作为函数参数](md/008map/004map-as-func-param/map-as-func-param.md) # 九、结构体 - [结构体定义](md/009struct/001define/define.md) - [结构体作为函数参数](md/009struct/002struct-as-func-param/struct-as-func-param.md) # 十、指针 - [介绍](md/010pointer/001pointer-base/pointer-base.md)