Go学习路径--相关基础

Posted James_飏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go学习路径--相关基础相关的知识,希望对你有一定的参考价值。

现在开始接触Go一段时间了,基本路径就是看基础学习材料,开始写项目,有问题找解决问题的方法。这里记录一下学习过程。

go相关文章

Golang 支持在一个平台下生成另一个平台可执行程序的交叉编译功能。

1、Mac下编译Linux, Windows平台的64位可执行程序:
$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build test.go
$ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build test.go
2、Linux下编译Mac, Windows平台的64位可执行程序:
$ CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build test.go
$ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build test.go
3、Windows下编译Mac, Linux平台的64位可执行程序:
$ SET CGO_ENABLED=0SET GOOS=darwin3 SET GOARCH=amd64 go build test.go
$ SET CGO_ENABLED=0 SET GOOS=linux SET GOARCH=amd64 go build test.go

go基础学习材料

GO学习路径—系统包

1. flag包

After all flags are defined, call
flag.Parse()
to parse the command line into the defined flags.

2. sync包

  • 参考:锁和 sync 包
  • 参考:协程(goroutine)与通道(channel)
  • A WaitGroup waits for a collection of goroutines to finish. The main goroutine calls Add to set the number of goroutines to wait for. Then each of the goroutines runs and calls Done when finished. At the same time, Wait can be used to block until all goroutines have finished.

GO学习路径—第三方开发包

1. glog日志包

  • Leveled execution logs for Go.
  • 官网:https://code.google.com/p/google-glog/
  • The repository contains an open source version of the log package
    used inside Google. The master copy of the source lives inside
    Google, not here.

2. goconfig配置文件工具包

以上是关于Go学习路径--相关基础的主要内容,如果未能解决你的问题,请参考以下文章

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

go语言学习笔记 — 基础 — 基本语法 — 类型相关:类型定义与类型别名

Go基础--笔记

go语言学习基础-编译文件

go语言(golang)学习之路

go语言学习笔记 — 基础 — go工具:编译 —— go build