Go:Hello World
Go:Hello World
Go VS Python
Go:适合分布式化,集群管理,网络程序,工具
Python(描述表达)---> C++ 来做的
Go 优势
- 编译型语言,运行速度快
- 静态编译没有依赖
- 天生支持并发,充分利用多核
- 大厂支持,有后台(Google)
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
Web(Java中用的 Servlet,看看在 Go 中如何实现)
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello world")
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}