|
所在平台: Udemy |
课程主页: https://www.udemy.com/course/golang-programming-inside-out-a-total-reference/
课程评论:没有评论
课程名称:深入理解Golang编程:全面参考 课程概述:Go语言是一种通用编程语言,具有开放源代码性质。作为一种编译语言,Go具备快速编译的特点,并且内置了并发支持。Go语言由谷歌公司设计和开发,具有一种名为Goroutines的特性,Goroutines是轻量级的处理过程。Goroutines之间的通信通过称为通道(channels)来管理,使用简单的语法进行数据的发送和接收。 此课程提供了全面的Go语言参考,适合希望深入了解Go的开发者。
Go is a general purpose programming language.Go is open source. Go is a compiled language. It compiles fast. Go has in-built concurrency support. Go was designed and developed at Google Inc. Go has a feature called Goroutines. Goroutines are lightweight processes. Communication between Goroutines is managed through what is called channels.Sending and receiving data through channels is done with simple syntax like