Go:Hello World

Go:Hello World

Go VS Python

Go:适合分布式化,集群管理,网络程序,工具
Python(描述表达)---> C++ 来做的

Go 优势

  1. 编译型语言,运行速度快
  2. 静态编译没有依赖
  3. 天生支持并发,充分利用多核
  4. 大厂支持,有后台(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)
}
posted @ 2024-09-16 00:30  爱新觉罗LQ  阅读(4)  评论(0编辑  收藏  举报