mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-12-26 06:46:27 +00:00
ch7-04.md fmt code
This commit is contained in:
parent
11aa8aeaf6
commit
c300e57ead
@ -1,23 +1,29 @@
|
|||||||
## 7.4. flag.Value接口
|
## 7.4. flag.Value接口
|
||||||
|
|
||||||
在本章,我們會學到另一個標準的接口類型flag.Value是怎麽幫助命令行標記定義新的符號的。思考下面這個會休眠特定時間的程序:
|
在本章,我們會學到另一個標準的接口類型flag.Value是怎麽幫助命令行標記定義新的符號的。思考下面這個會休眠特定時間的程序:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// gopl.io/ch7/sleep
|
// gopl.io/ch7/sleep
|
||||||
var period = flag.Duration("period", 1*time.Second, "sleep period")
|
var period = flag.Duration("period", 1*time.Second, "sleep period")
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
fmt.Printf("Sleeping for %v...", *period)
|
fmt.Printf("Sleeping for %v...", *period)
|
||||||
time.Sleep(*period)
|
time.Sleep(*period)
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
在它休眠前它會打印出休眠的時間週期。fmt包調用time.Duration的String方法打印這個時間週期是以用戶友好的註解方式,而不是一個納秒數字:
|
在它休眠前它會打印出休眠的時間週期。fmt包調用time.Duration的String方法打印這個時間週期是以用戶友好的註解方式,而不是一個納秒數字:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ go build gopl.io/ch7/sleep
|
$ go build gopl.io/ch7/sleep
|
||||||
$ ./sleep
|
$ ./sleep
|
||||||
Sleeping for 1s...
|
Sleeping for 1s...
|
||||||
```
|
```
|
||||||
|
|
||||||
默認情況下,休眠週期是一秒,但是可以通過 -period 這個命令行標記來控製。flag.Duration函數創建一個time.Duration類型的標記變量併且允許用戶通過多種用戶友好的方式來設置這個變量的大小,這種方式還包括和String方法相同的符號排版形式。這種對稱設計使得用戶交互良好。
|
默認情況下,休眠週期是一秒,但是可以通過 -period 這個命令行標記來控製。flag.Duration函數創建一個time.Duration類型的標記變量併且允許用戶通過多種用戶友好的方式來設置這個變量的大小,這種方式還包括和String方法相同的符號排版形式。這種對稱設計使得用戶交互良好。
|
||||||
|
|
||||||
```
|
```
|
||||||
$ ./sleep -period 50ms
|
$ ./sleep -period 50ms
|
||||||
Sleeping for 50ms...
|
Sleeping for 50ms...
|
||||||
@ -28,63 +34,73 @@ Sleeping for 1h30m0s...
|
|||||||
$ ./sleep -period "1 day"
|
$ ./sleep -period "1 day"
|
||||||
invalid value "1 day" for flag -period: time: invalid duration 1 day
|
invalid value "1 day" for flag -period: time: invalid duration 1 day
|
||||||
```
|
```
|
||||||
|
|
||||||
因爲時間週期標記值非常的有用,所以這個特性被構建到了flag包中;但是我們爲我們自己的數據類型定義新的標記符號是簡單容易的。我們隻需要定義一個實現flag.Value接口的類型,如下:
|
因爲時間週期標記值非常的有用,所以這個特性被構建到了flag包中;但是我們爲我們自己的數據類型定義新的標記符號是簡單容易的。我們隻需要定義一個實現flag.Value接口的類型,如下:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
package flag
|
package flag
|
||||||
|
|
||||||
// Value is the interface to the value stored in a flag.
|
// Value is the interface to the value stored in a flag.
|
||||||
type Value interface {
|
type Value interface {
|
||||||
String() string
|
String() string
|
||||||
Set(string) error
|
Set(string) error
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
String方法格式化標記的值用在命令行幫組消息中;這樣每一個flag.Value也是一個fmt.Stringer。Set方法解析它的字符串參數併且更新標記變量的值。實際上,Set方法和String是兩個相反的操作,所以最好的辦法就是對他們使用相同的註解方式。
|
String方法格式化標記的值用在命令行幫組消息中;這樣每一個flag.Value也是一個fmt.Stringer。Set方法解析它的字符串參數併且更新標記變量的值。實際上,Set方法和String是兩個相反的操作,所以最好的辦法就是對他們使用相同的註解方式。
|
||||||
|
|
||||||
讓我們定義一個允許通過攝氏度或者華氏溫度變換的形式指定溫度的celsiusFlag類型。註意celsiusFlag內嵌了一個Celsius類型(§2.5),因此不用實現本身就已經有String方法了。爲了實現flag.Value,我們隻需要定義Set方法:
|
讓我們定義一個允許通過攝氏度或者華氏溫度變換的形式指定溫度的celsiusFlag類型。註意celsiusFlag內嵌了一個Celsius類型(§2.5),因此不用實現本身就已經有String方法了。爲了實現flag.Value,我們隻需要定義Set方法:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// gopl.io/ch7/tempconv
|
// gopl.io/ch7/tempconv
|
||||||
// *celsiusFlag satisfies the flag.Value interface.
|
// *celsiusFlag satisfies the flag.Value interface.
|
||||||
type celsiusFlag struct{ Celsius }
|
type celsiusFlag struct{ Celsius }
|
||||||
|
|
||||||
func (f *celsiusFlag) Set(s string) error {
|
func (f *celsiusFlag) Set(s string) error {
|
||||||
var unit string
|
var unit string
|
||||||
var value float64
|
var value float64
|
||||||
fmt.Sscanf(s, "%f%s", &value, &unit) // no error check needed
|
fmt.Sscanf(s, "%f%s", &value, &unit) // no error check needed
|
||||||
switch unit {
|
switch unit {
|
||||||
case "C", "°C":
|
case "C", "°C":
|
||||||
f.Celsius = Celsius(value)
|
f.Celsius = Celsius(value)
|
||||||
return nil
|
return nil
|
||||||
case "F", "°F":
|
case "F", "°F":
|
||||||
f.Celsius = FToC(Fahrenheit(value))
|
f.Celsius = FToC(Fahrenheit(value))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return fmt.Errorf("invalid temperature %q", s)
|
return fmt.Errorf("invalid temperature %q", s)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
調用fmt.Sscanf函數從輸入s中解析一個浮點數(value)和一個字符串(unit)。雖然通常必鬚檢査Sscanf的錯誤返迴,但是在這個例子中我們不需要因爲如果有錯誤發生,就沒有switch case會匹配到。
|
調用fmt.Sscanf函數從輸入s中解析一個浮點數(value)和一個字符串(unit)。雖然通常必鬚檢査Sscanf的錯誤返迴,但是在這個例子中我們不需要因爲如果有錯誤發生,就沒有switch case會匹配到。
|
||||||
|
|
||||||
下面的CelsiusFlag函數將所有邏輯都封裝在一起。它返迴一個內嵌在celsiusFlag變量f中的Celsius指針給調用者。Celsius字段是一個會通過Set方法在標記處理的過程中更新的變量。調用Var方法將標記加入應用的命令行標記集合中,有異常複雜命令行接口的全局變量flag.CommandLine.Programs可能有幾個這個類型的變量。調用Var方法將一個*celsiusFlag參數賦值給一個flag.Value參數,導致編譯器去檢査*celsiusFlag是否有必鬚的方法。
|
下面的CelsiusFlag函數將所有邏輯都封裝在一起。它返迴一個內嵌在celsiusFlag變量f中的Celsius指針給調用者。Celsius字段是一個會通過Set方法在標記處理的過程中更新的變量。調用Var方法將標記加入應用的命令行標記集合中,有異常複雜命令行接口的全局變量flag.CommandLine.Programs可能有幾個這個類型的變量。調用Var方法將一個*celsiusFlag參數賦值給一個flag.Value參數,導致編譯器去檢査*celsiusFlag是否有必鬚的方法。
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// CelsiusFlag defines a Celsius flag with the specified name,
|
// CelsiusFlag defines a Celsius flag with the specified name,
|
||||||
// default value, and usage, and returns the address of the flag variable.
|
// default value, and usage, and returns the address of the flag variable.
|
||||||
// The flag argument must have a quantity and a unit, e.g., "100C".
|
// The flag argument must have a quantity and a unit, e.g., "100C".
|
||||||
func CelsiusFlag(name string, value Celsius, usage string) *Celsius {
|
func CelsiusFlag(name string, value Celsius, usage string) *Celsius {
|
||||||
f := celsiusFlag{value}
|
f := celsiusFlag{value}
|
||||||
flag.CommandLine.Var(&f, name, usage)
|
flag.CommandLine.Var(&f, name, usage)
|
||||||
return &f.Celsius
|
return &f.Celsius
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
現在我們可以開始在我們的程序中使用新的標記:
|
現在我們可以開始在我們的程序中使用新的標記:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// gopl.io/ch7/tempflag
|
// gopl.io/ch7/tempflag
|
||||||
var temp = tempconv.CelsiusFlag("temp", 20.0, "the temperature")
|
var temp = tempconv.CelsiusFlag("temp", 20.0, "the temperature")
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
fmt.Println(*temp)
|
fmt.Println(*temp)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
下面是典型的場景:
|
下面是典型的場景:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ go build gopl.io/ch7/tempflag
|
$ go build gopl.io/ch7/tempflag
|
||||||
$ ./tempflag
|
$ ./tempflag
|
||||||
@ -96,12 +112,14 @@ $ ./tempflag -temp 212°F
|
|||||||
$ ./tempflag -temp 273.15K
|
$ ./tempflag -temp 273.15K
|
||||||
invalid value "273.15K" for flag -temp: invalid temperature "273.15K"
|
invalid value "273.15K" for flag -temp: invalid temperature "273.15K"
|
||||||
Usage of ./tempflag:
|
Usage of ./tempflag:
|
||||||
-temp value
|
-temp value
|
||||||
the temperature (default 20°C)
|
the temperature (default 20°C)
|
||||||
$ ./tempflag -help
|
$ ./tempflag -help
|
||||||
Usage of ./tempflag:
|
Usage of ./tempflag:
|
||||||
-temp value
|
-temp value
|
||||||
the temperature (default 20°C)
|
the temperature (default 20°C)
|
||||||
```
|
```
|
||||||
練習7.6:對tempFlag加入支持開爾文溫度。
|
|
||||||
練習7.7:解釋爲什麽幫助信息在它的默認值是20.0沒有包含°C的情況下輸出了°C。
|
**練習 7.6:** 對tempFlag加入支持開爾文溫度。
|
||||||
|
|
||||||
|
**練習 7.7:** 解釋爲什麽幫助信息在它的默認值是20.0沒有包含°C的情況下輸出了°C。
|
||||||
|
Loading…
Reference in New Issue
Block a user