用golang 出个一个实例
时间: 2023-07-27 16:12:39 浏览: 89
go-examples:一些golang例子
好的,下面是一个简单的使用 Golang 实现的例子:
```go
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello, world!")
})
err := http.ListenAndServe(":8080", nil)
if err != nil {
fmt.Println("Error:", err)
}
}
```
这个例子创建了一个简单的 Web 服务器,当用户访问根路径时,会返回 "Hello, world!"。它使用了 Golang 的标准库中的 `net/http` 包来处理 HTTP 请求和响应。
我们先在终端里进入到该文件所在的目录,然后使用 `go run` 命令来运行它:
```bash
$ go run main.go
```
接着在浏览器中访问 `http://localhost:8080`,你就会看到 "Hello, world!" 的字样了。
阅读全文