保留字 true
和 false
表示该类仅有的两个实例。
尝试扩展或实现 bool 类会导致编译时错误。
构造函数
- bool.fromEnvironment(String name, {bool defaultValue = false})
- 返回编译配置环境中的
name
的布尔值。constfactory - bool.hasEnvironment(String name)
- 判断
name
是否在编译配置环境中声明。constfactory
属性
- hashCode → int
- 此对象的哈希码。无设置器override
- runtimeType → Type
- 对象的运行时类型表示。无设置器继承
方法
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。继承
-
toString(
) → String - 返回
"true"
或"false"
。override
运算符
-
operator &(
bool other) → bool - 此与
other
的逻辑与。 -
operator ==(
Object other) → bool - 等于运算符。继承
-
operator ^(
bool other) → bool - 此与
other
的逻辑异或。 -
operator |(
bool other) → bool - 此与
other
的逻辑或。