http.Server 中的端口“:http”是什么意思?

我正在阅读http.Server文档中的类型声明,我遇到了这个。


type Server struct {

    Addr string // TCP address to listen on, ":http" if empty

    // more...

}

如果调用srv.ListenAndServe()并且srv.Addr是空字符串,ListenAndServe则将传递":http"给net.Listen( http/server.go )。


什么":http"意思?


MMTTMM
浏览 169回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go