標籤:blog http color 使用 os strong ar div
Web 服務器
包 http 通過任何實現了 http.Handler 的值來響應 HTTP 要求:
package httptype Handler interface { ServeHTTP(w ResponseWriter, r *Request)}
在這個例子中,類型 Hello 實現了 `http.Handler`。
訪問 http://localhost:4000/ 會看到來自程式的問候。
注意: 這個例子無法在基於 web 的指南使用者介面運行。為了嘗試編寫 網頁伺服器,可能需要安裝 Go。
package mainimport ("fmt""net/http")type Hello struct{}func (h Hello) ServeHTTP(w http.ResponseWriter,r *http.Request) {fmt.Fprint(w, "Hello!")}func main() {var h Hellohttp.ListenAndServe("localhost:4000", h)}
圖片
Package image 定義了 Image 介面:
package imagetype Image interface { ColorModel() color.Model Bounds() Rectangle At(x, y int) color.Color}
(參閱文檔瞭解全部資訊。)
同樣,`color.Color` 和 color.Model 也是介面,但是通常因為直接使用預定義的實現image.RGBA 和 image.RGBAModel 而被忽視了。這些介面和類型由image/color 包定義。
package mainimport ("fmt""image")func main() {m := image.NewRGBA(image.Rect(0, 0, 100, 100))fmt.Println(m.Bounds())fmt.Println(m.At(0, 0).RGBA())}