Swift中的基本类型Bool,Bool值是逻辑值,因为Bool值只能是true或者是false值。
如:
- // true是一个关键字,不能像C那样用非0表示true
- let orangesAreOrange = true
- // false是一个关键字,不能使用0来表示false
- let trunipsAreDelicious = false
Bool值通常在条件语句中是很有用的,如:
- // turnipsAreDelicious 值只能是true or false
- if turnipsAreDelicious {
- println("Mmm, tasty turnips!")
- } else {
- println("Eww, trunips are horrible")
- }
- let integerValue = 1
- if integerValue {
- // 这么写法是不行的,编译出错,因为integerValue 是Int类型,不是Bool类型,是不会隐式转换成Bool类型的,所以不能通过
- }
- let integerValue = 1
- if integerValue == 1 {
- // 这么写法是正确的,因为 == 比较的结果是Bool类型,结果是true,所以可以正常编译
- }