C 的 long int
类型,也称为 long
。
通常是一个有符号的 32 位或 64 位整数。为了保证 32 位整数,请使用与 C 的 int32_t
类型对应的 Int32。为了保证 64 位整数,请使用与 C 的 int64_t
类型对应的 Int64。对于无符号长整数,请使用 UnsignedLong。
Long 类型是原生类型,不应在 Dart 代码中构建。它只出现在原生类型签名以及 Struct 和 Union 字段的注解中。
- 继承
-
- Object
- AbiSpecificInteger
- Long
- 注解
-
- @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
- 此对象的哈希码。no setterinherited
- runtimeType → Type
- 对象运行时类型的表示。no setterinherited
方法
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时被调用。inherited
-
toString(
) → String - 此对象的字符串表示。inherited
运算符
-
operator ==(
Object other) → bool - 相等运算符。inherited