6
我正在閱讀文檔中的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"
是什麼意思?
注意:在推出[提交876e9d1b(https://github.com/golang/go/commit/876e9d1b89cf87f3791153fa9472142cd5294223#diff-21335be6bb7e87c8e655a237f635b095R679)於2011年2月通過[Brad Fitzpatrick](https://github.com/bradfitz)。 – VonC