📌  相关文章
📜  如何在 Golang 中使用 strconv.FormatBool()函数?

📅  最后修改于: 2021-10-25 02:53:52             🧑  作者: Mango

Go 语言提供内置支持,以通过strconv Package实现基本数据类型的字符串表示的转换。这个包提供了一个FormatBool()函数,用于根据 x 的值返回真或假。要访问 FormatBool()函数,您需要借助 import 关键字在程序中导入 strconv 包。

句法:

func FormatBool(x bool) string

参数:该函数接受一个bool类型的参数,即x。

返回值:该函数根据x的值返回true或false。

让我们在给定示例的帮助下讨论这个概念:

示例 1:

// Golang program to illustrate
// strconv.FormatBool() Function
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
  
    // Finding true or false
    // according to the input value
    // Using FormatBool() function
    fmt.Println(strconv.FormatBool(true))
    fmt.Println(strconv.FormatBool(false))
  
}

输出:

true
false

示例 2:

// Golang program to illustrate
// strconv.FormatBool() Function
  
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
  
    // Finding true or false
    // according to the input value
    // Using FormatBool() function
    val1 := true
    res1 := strconv.FormatBool(val1)
    fmt.Printf("Result 1: %v", res1)
    fmt.Printf("\nType 1: %T", res1)
  
    val2 := false
    res2 := strconv.FormatBool(val2)
    fmt.Printf("\nResult 2: %v", res2)
    fmt.Printf("\nType 2: %T", res2)
  
}

输出:

Result 1: true
Type 1: string
Result 2: false
Type 2: string