作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
Golang系列之布尔类型基本介绍
go语言中的布尔类型,关键字为bool,布尔类型只有true或者false两种类型,占用1个字节,布尔类型适用于逻辑运算,一般在流程控制语句中,比如if条件、for循环等等
var bol bool = true
fmt.Println("bol=" , bol)
布尔类型占用内存空间大小是1个字节,可以通过unsafe.Sizeof
打印
var bol bool = true
// 打印布尔类型占用字节
fmt.Println("size of bool=" , unsafe.Sizeof(bol))
布尔类型和其它类型不一样,是不支持类型强转的,将一个整型赋值给布尔类型也会报错
var b bool
// 编译会报错,cannot use 1 (type untyped int) as type bool in assignment
b = 1
// 类型强转也会报错,cannot convert 1 (type untyped int) to type bool
b = bool(1)
将一个表达式赋值给布尔类型是可以的
var bolv bool
bolv := (1!=2)
fmt.Println("b11=" , bolv)
当转换为 boolean 时,以下值被认为是 FALSE: the 布尔值 FALSE 自身 the 整型值 0 (零) the 浮点型值 0.0 (零) 空 字符串, 以及 字符串 &qu
Rem 将字符串转换为整形数据 function toInteger(str,num) &nb
我是一名优秀的程序员,十分优秀!