Charfinal

C语言 char 类型。

通常是一个有符号或无符号的8位整数。要保证是8位整数,请使用与C语言的 int8_t 类型对应的 Int8 或与 uint8_t 类型对应的 Uint8。要特别指定为 signedunsignedchar,请使用 SignedCharUnsignedChar

Char 类型是一个本地类型,不应在Dart代码中构造。它仅在本地类型签名以及作为StructUnion 字段上的注释中存在。

继承
注释
  • @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
此对象的哈希码。
无设置器继承
runtimeType Type
表示对象运行时类型的表示。
无设置器继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
继承
toString() String
此对象的字符串表示。
继承

运算符

operator ==(Object other) bool
等式运算符。
继承