package main
import "fmt"
type MHandler interface {
ServeMyHTTP(req string, res string)
}
type MHandlerFunc func(req string, res string)
func (f MHandlerFunc) ServeMyHTTP(req string, res string) {
f(req, res)
}
func run(handler MHandler, req, res string) {
handler.ServeMyHTTP(req, res)
}
func main() {
h := func(req string, res string) {
fmt.Println(req, res)
}
hh := MHandlerFunc(h)
run(hh, "hello", "world")
}
主要思想就是函数签名一致,然后对h函数转换成MHandlerFunc,这样就实现 ServeMyHTTP方法了。
net/http包中默认使用的路由也会实现ServeHTTP的方法,注册路由函数后在接受到请求时调用该ServeHTTP方法,里面会去寻找对应的路由函数,再执行路由函数的ServeHTTP方法,最后就是调用自身的方法去操作请求和回应了。