Go使用fmt.Printf
印出格式化字串或fmt.Sprintf
產生格式化字串時可使用%t
符號代表boolean值。
main.go
package main
import "fmt"
func main() {
fmt.Printf("success is %t\n", true)
s := fmt.Sprintf("failure is %t\n", false)
fmt.Print(s)
}
執行後印出以下:
success is true
failure is false
沒有留言:
張貼留言