[日常] Go语言圣经-函数多返回值习题
Go语言圣经-函数多返回值
1.在Go中,一个函数可以返回多个值
2.许多标准库中的函数返回2个值,一个是期望得到的返回值,另一个是函数出错时的错误信息
3.如果一个函数将所有的返回值都显示的变量名,那么该函数的return语句可以省略操作数。这称之为bare return。
练习 5.5: 实现countWordsAndImages。(参考练习4.9如何分词)
package main import ( "fmt" "golang.org/x/net/html" "net/http" "os" "strings" ) /* 练习 5.5: 实现countWordsAndImages。(参考练习4.9如何分词) */ func main() { words, images, _ := CountWordsAndImages(os.Args[1]) fmt.Printf("文字:%d,图片:%d \n",words,images) } // CountWordsAndImages does an HTTP GET request for the HTML // document url and returns the number of words and images in it. func CountWordsAndImages(url string) (words, images int, err error) { resp, err := http.Get(url) if err != nil { return } doc, err := html.Parse(resp.Body) resp.Body.Close() if err != nil { err = fmt.Errorf("parsing HTML: %s", err) return } words, images = countWordsAndImages(doc) //bare return return } func countWordsAndImages(n *html.Node) (words, images int) { texts, images := visit3(nil,0, n) for _, v := range texts { v = strings.Trim(strings.TrimSpace(v), "\r\n") if v == "" { continue } words += strings.Count(v, "") } //bare return return } //递归循环html func visit3(texts []string, imgs int, n *html.Node) ([]string, int) { //文本 if n.Type == html.TextNode { texts = append(texts, n.Data) } //图片 if n.Type == html.ElementNode && (n.Data == "img") { imgs++ } for c := n.FirstChild; c != nil; c = c.NextSibling { if c.Data == "script" || c.Data == "style" { continue } texts,imgs = visit3(texts, imgs, c) } //多返回值 return texts, imgs }
练习 5.6: 修改gopl.io/ch3/surface (§3.2) 中的corner函数,将返回值命名,并使用bare return。
这个很简单就不贴了
十年开发经验程序员,离职全心创业中,历时三年开发出的产品《唯一客服系统》
一款基于Golang+Vue开发的在线客服系统,软件著作权编号:2021SR1462600。一套可私有化部署的网站在线客服系统,编译后的二进制文件可直接使用无需搭开发环境,下载zip解压即可,仅依赖MySQL数据库,是一个开箱即用的全渠道在线客服系统,致力于帮助广大开发者/公司快速部署整合私有化客服功能。
开源地址:唯一客服(开源学习版)
官网地址:唯一客服官网