C 语言的 char
类型。
通常是带符号或无符号的 8 位整数。要保证是 8 位整数,请使用与 C 语言 int8_t
类型对应的 Int8 或与 C 语言 uint8_t
类型对应的 Uint8。对于特定 signed
或 unsigned
的 char
,请使用 SignedChar 或 UnsignedChar。
Char 类型是本地类型,不应在 Dart 代码中构建。它仅出现在本地类型签名中,以及在 Struct 和 Union 字段上的注解中。
- 继承
-
- Object
- AbiSpecificInteger
- Char
- 注解
-
- @Since('2.17')
- @AbiSpecificIntegerMapping({Abi.androidArm : Uint8(), Abi.androidArm64 : Uint8(), Abi.androidIA32 : Int8(), Abi.androidX64 : Int8(), Abi.androidRiscv64 : Uint8(), Abi.fuchsiaArm64 : Uint8(), Abi.fuchsiaX64 : Int8(), Abi.fuchsiaRiscv64 : Uint8(), Abi.iosArm : Int8(), Abi.iosArm64 : Int8(), Abi.iosX64 : Int8(), Abi.linuxArm : Uint8(), Abi.linuxArm64 : Uint8(), Abi.linuxIA32 : Int8(), Abi.linuxX64 : Int8(), Abi.linuxRiscv32 : Uint8(), Abi.linuxRiscv64 : Uint8(), Abi.macosArm64 : Int8(), Abi.macosX64 : Int8(), Abi.windowsArm64 : Int8(), Abi.windowsIA32 : Int8(), Abi.windowsX64 : Int8()})
构造函数
- Char()
-
const
属性
- hashCode → int
- 该对象的哈希码。no setterinherited
- runtimeType → Type
- 对象的运行时类型表示。no setterinherited
方法
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。inherited
-
toString(
) → String - 该对象的字符串表示。inherited
操作符
-
operator ==(
Object other) → bool - 相等操作符。inherited