package main
import (
"fmt"
"strconv"
)
func main(){
//Parse 解析成bool
fmt.Println(strconv.ParseBool("1"))
fmt.Println(strconv.ParseBool("0"))
fmt.Println(strconv.ParseBool("T"))
fmt.Println(strconv.ParseBool("F"))
fmt.Println(strconv.FormatBool(0 <1))// true
a:=strconv.FormatBool(true)
fmt.Printf("%T,%v\n",a,a)
b,_:=strconv.ParseBool("true")
fmt.Printf("%T,%v\n",b,b)
var c int64 =20
//后面的10 表示进制,转换为10进制
//将格式化int成string
fmt.Println(strconv.FormatInt(c,10))
}
有疑问加站长微信联系(非本文作者)