運行下面代碼.
在瀏覽器中訪問:http://localhost:4000/ 可以看到hello輸出
//定義類型
type Hello struct{}
//復(fù)寫 http請求和相應(yīng)接口
func (h Hello) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello!")
}
func main() {
//聲明變量
var h Hello
//創(chuàng)建請求
err := http.ListenAndServe("localhost:4000", h)
if err != nil {
log.Fatal(err)
}
}