共计 765 个字符,预计需要花费 2 分钟才能阅读完成。
强大的 Go 开发服务器简单例子:
packagemain
import"net/http"
funcSayHello(whttp.ResponseWriter,r*http.Request){
w.Write([]byte("hello"))
}
funcmain(){
http.HandleFunc("/hello",SayHello())
http.ListenAndServe(":1234",nil)
}
listenAndServer 进行端口的监听
handlefunc 进行注册路径的处理函数
处理函数为 sayhello
如何为 Linux 安装 Go 语言 http://www.linuxidc.com/Linux/2015-09/123114.htm
Linux 系统入门学习 - 在 Linux 中安装 Go 语言 http://www.linuxidc.com/Linux/2015-02/113159.htm
Ubuntu 安装 Go 语言包 http://www.linuxidc.com/Linux/2013-05/85171.htm
《Go 语言编程》高清完整版电子书 http://www.linuxidc.com/Linux/2013-05/84709.htm
Go 语言并行之美 — 超越“Hello World”http://www.linuxidc.com/Linux/2013-05/83697.htm
我为什么喜欢 Go 语言 http://www.linuxidc.com/Linux/2013-05/84060.htm
Go 语言内存分配器的实现 http://www.linuxidc.com/Linux/2014-01/94766.htm
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-02/128556.htm
正文完
星哥玩云-微信公众号