标签: go server network-programming go-http
我是Go and Networking的新手。我知道net.Listen和http.ListenAndServe都会创建一个服务器。但是它们的功能有什么区别?
答案 0 :(得分:1)
基本上,如documentation对net.Listen所说:The network must be "tcp", "tcp4", "tcp6", "unix" or "unixpacket".
net.Listen
The network must be "tcp", "tcp4", "tcp6", "unix" or "unixpacket".
http.ListenAndServe创建一个HTTP服务器。
http.ListenAndServe