我感覺這個(gè)地方完全不需要用指針的吧,為什么我看到很多相關(guān)的例子都要用了指針。有點(diǎn)疑問package mainimport ( "fmt"
"net/http")type MyMux struct {
}//這個(gè)地方使用了指針。但是我覺得完全不需要的吧func (p *MyMux) ServeHTTP(w http.ResponseWriter, r *http.Request) { if r.URL.Path == "/" {
sayhelloName(w, r) return
}
http.NotFound(w, r) return}func sayhelloName(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello myroute!")
}func main() {
mux := &MyMux{}
http.ListenAndServe(":9090", mux)
}
關(guān)于這個(gè)地方指針的一個(gè)疑問
瀟湘沐
2018-08-03 20:54:04