当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang strconv.FormatBool()用法及代码示例


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

用法:

func FormatBool(x bool) string

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

返回值:该函数根据 x 的值返回真或假。

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



范例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



相关用法


注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 How to use strconv.FormatBool() Function in Golang?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。