码迷,mamicode.com
首页 > 其他好文 > 详细

Go http.HandlerFunc()

时间:2014-08-12 16:24:14      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   for   ar   div   line   

//http.Handler
type Handler interface {
    ServeHTTP(ResponseWriter, *Request)
}
type HandlerFunc func(ResponseWriter, *Request)

func (HandlerFunc) ServeHTTP


一般当创建一个如下的方法时,可通过http.HandlerFunc(name)转换为Handler类型,因为HanderFunc里有ServeHttp方法,实现了Handler接口

func name(rw ResponseWrite, r *Request){}

Go http.HandlerFunc(),布布扣,bubuko.com

Go http.HandlerFunc()

标签:style   blog   http   color   for   ar   div   line   

原文地址:http://www.cnblogs.com/hellosun/p/3907199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!