C 的 unsigned long int
类型,也称为 unsigned long
。
通常是一个无符号的 32 位或 64 位整数。要保证 32 位整数,请使用与 C 的 uint32_t
类型对应的 Uint32。要保证 64 位整数,请使用与 C 的 uint64_t
类型对应的 Uint64。要使用有符号的 long
,请使用 Long。
UnsignedLong 类型是本地类型,不应在 Dart 代码中构造。它仅在本地类型签名中以及在 Struct 和 Union 字段上的注释中出现。
- 继承
-
- Object
- AbiSpecificInteger
- 无符号长整数
- 注解
-
- @Since('2.17')
- @AbiSpecificIntegerMapping({Abi.androidArm : Uint32(), Abi.androidArm64 : Uint64(), Abi.androidIA32 : Uint32(), Abi.androidX64 : Uint64(), Abi.androidRiscv64 : Uint64(), Abi.fuchsiaArm64 : Uint64(), Abi.fuchsiaX64 : Uint64(), Abi.fuchsiaRiscv64 : Uint64(), Abi.iosArm : Uint32(), Abi.iosArm64 : Uint64(), Abi.iosX64 : Uint64(), Abi.linuxArm : Uint32(), Abi.linuxArm64 : Uint64(), Abi.linuxIA32 : Uint32(), Abi.linuxX64 : Uint64(), Abi.linuxRiscv32 : Uint32(), Abi.linuxRiscv64 : Uint64(), Abi.macosArm64 : Uint64(), Abi.macosX64 : Uint64(), Abi.windowsArm64 : Uint32(), Abi.windowsIA32 : Uint32(), Abi.windowsX64 : Uint32()})
构造函数
- UnsignedLong()
-
const
属性
- hashCode → int
- 此对象的哈希码。no setterinherited
- runtimeType → Type
- 对象的运行时类型的表示。no setterinherited
方法
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。inherited
-
toString(
) → String - 此对象的字符串表示。inherited
运算符
-
operator ==(
Object other) → bool - 等号运算符。inherited