我正在通过为 GAE 编写应用程序来学习 Go,这是处理程序函数的签名:
func handle(w http.ResponseWriter, r *http.Request) {}
我是这里的指针新手,为什么Request对象是指针,但ResponseWriter不是?是否需要以这种方式使用它,或者这只是为了使某种基于高级指针的代码成为可能?
Request
ResponseWriter
你得到的w是一个指向非导出类型的指针,http.response但作为ResponseWriter一个接口,它是不可见的。
w
http.response
从server.go:
type ResponseWriter interface { ... }
另一方面,r是指向具体结构的指针,因此需要显式传递引用。
r
从request.go:
type Request struct { ... }