Go语言网络编程:HTTP服务端之底层原理与源码分析——http.HandleFunc()、http.ListenAndServe()
一、启动http服务import("net/http")funcmain(){http.HandleFunc("/ping",func(whttp.ResponseWriter,r*http.Request){w.Write([]byte("ping...ping..."))})http.ListenAndServe(":8999",nil)}在Golang只需要几行代码便能启动一个http服务,