Go语言实现简单Web服务器的方法
时间:2020-10-15 09:31:25|栏目:Golang|点击: 次
本文实例讲述了Go语言实现简单Web服务器的方法。分享给大家供大家参考。具体分析如下:
包 http 通过任何实现了 http.Handler 的值来响应 HTTP 请求:
package http
type Handler interface {
ServeHTTP(w ResponseWriter,
r *Request)
}
在这个例子中,类型 Hello 实现了 http.Handler。
注意: 这个例子无法在基于 web 的指南用户界面运行。为了尝试编写 web 服务器,可能需要安装 Go。
复制代码 代码如下:
package main
import (
"fmt"
"net/http"
)
type Hello struct{}
func (h Hello) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Hello!")
}
func main() {
var h Hello
http.ListenAndServe("localhost:4000",h)
}
import (
"fmt"
"net/http"
)
type Hello struct{}
func (h Hello) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Hello!")
}
func main() {
var h Hello
http.ListenAndServe("localhost:4000",h)
}
希望本文所述对大家的Go语言程序设计有所帮助。
上一篇:wind10 idea中 go 开发环境搭建教程图解
栏 目:Golang
下一篇:深入理解Go语言中的闭包
本文标题:Go语言实现简单Web服务器的方法
本文地址:http://www.codeinn.net/misctech/11426.html