无符号长整型final

C语言中的unsigned long int类型,也称为unsigned long

通常是一个无符号的32位或64位整数。要保证32位整数,请使用Uint32与C语言的uint32_t类型一起。要保证64位整数,请使用Uint64与C语言的uint64_t类型一起。对于有符号的long类型,请使用Long

无符号长整型类型是一个本地类型,不应在Dart代码中构造。它仅出现在本地类型签名和Struct以及Union字段的注解中。

继承
注解
  • @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()})

构造函数

无符号长整型()
const

属性

hashCode int
此对象的哈希码。
无setter继承
runtimeType Type
对象的运行时类型表示。
无setter继承

方法

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

运算符

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