mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-24 15:18:57 +00:00
ch5-5: fmt code
This commit is contained in:
parent
423ec9de12
commit
03edd41bdb
@ -1,15 +1,19 @@
|
|||||||
## 5.5. 函數值
|
## 5.5. 函數值
|
||||||
|
|
||||||
在Go中,函數被看作第一類值(first-class values):函數像其他值一樣,擁有類型,可以被賦值給其他變量,傳遞給函數,從函數返迴。對函數值(function value)的調用類似函數調用。例子如下:
|
在Go中,函數被看作第一類值(first-class values):函數像其他值一樣,擁有類型,可以被賦值給其他變量,傳遞給函數,從函數返迴。對函數值(function value)的調用類似函數調用。例子如下:
|
||||||
|
|
||||||
```Go
|
```Go
|
||||||
func square(n int) int { return n * n }
|
func square(n int) int { return n * n }
|
||||||
func negative(n int) int { return -n }
|
func negative(n int) int { return -n }
|
||||||
func product(m, n int) int { return m * n }
|
func product(m, n int) int { return m * n }
|
||||||
|
|
||||||
f := square
|
f := square
|
||||||
fmt.Println(f(3)) // "9"
|
fmt.Println(f(3)) // "9"
|
||||||
|
|
||||||
f = negative
|
f = negative
|
||||||
fmt.Println(f(3)) // "-3"
|
fmt.Println(f(3)) // "-3"
|
||||||
fmt.Printf("%T\n", f) // "func(int) int"
|
fmt.Printf("%T\n", f) // "func(int) int"
|
||||||
|
|
||||||
f = product // 編譯錯誤: can't assign f(int, int) int to f(int) int
|
f = product // 編譯錯誤: can't assign f(int, int) int to f(int) int
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -17,7 +21,7 @@
|
|||||||
|
|
||||||
```Go
|
```Go
|
||||||
var f func(int) int
|
var f func(int) int
|
||||||
f(3) //此處f的值爲nil,會引起panic錯誤
|
f(3) // 此處f的值爲nil,會引起panic錯誤
|
||||||
```
|
```
|
||||||
|
|
||||||
函數值可以與nil比較:
|
函數值可以與nil比較:
|
||||||
@ -35,8 +39,9 @@
|
|||||||
|
|
||||||
```Go
|
```Go
|
||||||
func add1(r rune) rune { return r + 1 }
|
func add1(r rune) rune { return r + 1 }
|
||||||
|
|
||||||
fmt.Println(strings.Map(add1, "HAL-9000")) // "IBM.:111"
|
fmt.Println(strings.Map(add1, "HAL-9000")) // "IBM.:111"
|
||||||
fmt.Println(strings.Map(add1, "VMS"))// "WNT"
|
fmt.Println(strings.Map(add1, "VMS")) // "WNT"
|
||||||
fmt.Println(strings.Map(add1, "Admix")) // "Benjy"
|
fmt.Println(strings.Map(add1, "Admix")) // "Benjy"
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -48,7 +53,7 @@ gopl.io/ch5/outline2
|
|||||||
// pre和post都是可選的。
|
// pre和post都是可選的。
|
||||||
// 遍歷孩子結點之前,pre被調用
|
// 遍歷孩子結點之前,pre被調用
|
||||||
// 遍歷孩子結點之後,post被調用
|
// 遍歷孩子結點之後,post被調用
|
||||||
func forEachNode(n *html.Node, pre, post func(n *html.Node)) {
|
func forEachNode(n *html.Node, pre, post func(n *html.Node)) {
|
||||||
if pre != nil {
|
if pre != nil {
|
||||||
pre(n)
|
pre(n)
|
||||||
}
|
}
|
||||||
@ -58,38 +63,38 @@ gopl.io/ch5/outline2
|
|||||||
if post != nil {
|
if post != nil {
|
||||||
post(n)
|
post(n)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
該函數接收2個函數作爲參數,分别在結點的孩子被訪問前和訪問後調用。這樣的設計給調用者更大的靈活性。舉個例子,現在我們有startElemen和endElement兩個函數用於輸出HTML元素的開始標籤和結束標籤:< b >。。。< /b>
|
該函數接收2個函數作爲參數,分别在結點的孩子被訪問前和訪問後調用。這樣的設計給調用者更大的靈活性。舉個例子,現在我們有startElemen和endElement兩個函數用於輸出HTML元素的開始標籤和結束標籤`<b>...</b>`:
|
||||||
|
|
||||||
```Go
|
```Go
|
||||||
var depth int
|
var depth int
|
||||||
func startElement(n *html.Node) {
|
func startElement(n *html.Node) {
|
||||||
if n.Type == html.ElementNode {
|
if n.Type == html.ElementNode {
|
||||||
fmt.Printf("%*s<%s>\n", depth*2, "", n.Data)
|
fmt.Printf("%*s<%s>\n", depth*2, "", n.Data)
|
||||||
depth++
|
depth++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
func endElement(n *html.Node) {
|
func endElement(n *html.Node) {
|
||||||
if n.Type == html.ElementNode {
|
if n.Type == html.ElementNode {
|
||||||
depth--
|
depth--
|
||||||
fmt.Printf("%*s</%s>\n", depth*2, "", n.Data)
|
fmt.Printf("%*s</%s>\n", depth*2, "", n.Data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
上面的代碼利用fmt.Printf的一個小技巧控製輸出的縮進。%\*s中的\*會在字符串之前填充一些空格。在例子中,每次輸出會先填充depth\*2數量的空格,再輸出"",最後再輸出HTML標籤。
|
上面的代碼利用fmt.Printf的一個小技巧控製輸出的縮進。`%*s`中的`*`會在字符串之前填充一些空格。在例子中,每次輸出會先填充`depth*2`數量的空格,再輸出"",最後再輸出HTML標籤。
|
||||||
|
|
||||||
如果我們像下面這樣調用forEachNode:
|
如果我們像下面這樣調用forEachNode:
|
||||||
|
|
||||||
```Go
|
```Go
|
||||||
forEachNode(doc, startElement, endElement)
|
forEachNode(doc, startElement, endElement)
|
||||||
```
|
```
|
||||||
|
|
||||||
與之前的outline程序相比,我們得到了更加詳細的頁面結構:
|
與之前的outline程序相比,我們得到了更加詳細的頁面結構:
|
||||||
|
|
||||||
```Go
|
```
|
||||||
$ go build gopl.io/ch5/outline2
|
$ go build gopl.io/ch5/outline2
|
||||||
$ ./outline2 http://gopl.io
|
$ ./outline2 http://gopl.io
|
||||||
<html>
|
<html>
|
||||||
@ -112,16 +117,16 @@ $ ./outline2 http://gopl.io
|
|||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
練習 **5.7**:完善startElement和endElement函數,使其成爲通用的HTML輸出器。要求:輸出註釋結點,文本結點以及每個元素的屬性(< a href='...'>)。使用簡略格式輸出沒有孩子結點的元素(卽用< img/> 代替< img>< /img>)。編寫測試,驗證程序輸出的格式正確。(詳見11章)
|
**練習 5.7:** 完善startElement和endElement函數,使其成爲通用的HTML輸出器。要求:輸出註釋結點,文本結點以及每個元素的屬性(< a href='...'>)。使用簡略格式輸出沒有孩子結點的元素(卽用`<img/>`代替`<img></img>`)。編寫測試,驗證程序輸出的格式正確。(詳見11章)
|
||||||
|
|
||||||
練習 **5.8**:脩改pre和post函數,使其返迴布爾類型的返迴值。返迴false時,中止forEachNoded的遍歷。使用脩改後的代碼編寫ElementByID函數,根據用戶輸入的id査找第一個擁有該id元素的HTML元素,査找成功後,停止遍歷。
|
**練習 5.8:** 脩改pre和post函數,使其返迴布爾類型的返迴值。返迴false時,中止forEachNoded的遍歷。使用脩改後的代碼編寫ElementByID函數,根據用戶輸入的id査找第一個擁有該id元素的HTML元素,査找成功後,停止遍歷。
|
||||||
|
|
||||||
```Go
|
```Go
|
||||||
func ElementByID(doc *html.Node, id string) *html.Node
|
func ElementByID(doc *html.Node, id string) *html.Node
|
||||||
```
|
```
|
||||||
|
|
||||||
練習 **5.9** :編寫函數 expand,將s中的"foo"替換爲f("foo")的返迴值。
|
**練習 5.9:** 編寫函數expand,將s中的"foo"替換爲f("foo")的返迴值。
|
||||||
|
|
||||||
```Go
|
```Go
|
||||||
func expand(s string, f func(string) string) string
|
func expand(s string, f func(string) string) string
|
||||||
```
|
```
|
Loading…
Reference in New Issue
Block a user