AdSense

網頁

2024/2/19

Golang 字串格式化boolean值

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


沒有留言:

AdSense