Longfinal

等同于 C 语言中 long intlong 的类型。

通常是32位或64位的带符号整数。如果要保证是32位整数,请使用与 C 语言中的 int32_t 类型对应的 Int32。如果要保证是64位整数,请使用与 C 语言中的 int64_t 类型对应的 Int64。对于无符号长整数(unsigned long),请使用 UnsignedLong

Long 类型是原生类型,不应在 Dart 代码中构造。它只出现在原生类型签名中,以及在 StructUnion 字段的注解中。

继承
注解
  • @Since('2.17')
  • @AbiSpecificIntegerMapping({Abi.androidArm : Int32(), Abi.androidArm64 : Int64(), Abi.androidIA32 : Int32(), Abi.androidX64 : Int64(), Abi.androidRiscv64 : Int64(), Abi.fuchsiaArm64 : Int64(), Abi.fuchsiaX64 : Int64(), Abi.fuchsiaRiscv64 : Int64(), Abi.iosArm : Int32(), Abi.iosArm64 : Int64(), Abi.iosX64 : Int64(), Abi.linuxArm : Int32(), Abi.linuxArm64 : Int64(), Abi.linuxIA32 : Int32(), Abi.linuxX64 : Int64(), Abi.linuxRiscv32 : Int32(), Abi.linuxRiscv64 : Int64(), Abi.macosArm64 : Int64(), Abi.macosX64 : Int64(), Abi.windowsArm64 : Int32(), Abi.windowsIA32 : Int32(), Abi.windowsX64 : Int32()})

构造函数

Long()
const

属性

hashCode int
该对象的哈希码。
无设置器继承
runtimeType Type
表示对象运行时类型的表示。
无设置器继承

方法

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

运算符

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