算术运算符 + 方法

  1. @Since('3.3')
Pointer<Float> operator +(
  1. int offset
)

指向此 Float 之后第 offsetFloat 的指针。

返回一个指向 Float 的指针,其地址为此指针地址加上 offset 倍的 Float 的大小。也就是说 (this + offset).address == this.address + offset * sizeOf<Float>()

此外,(this + offset).value 等价于 this[offset],同样适用于设置。

实现

@Since('3.3')
@pragma("vm:prefer-inline")
Pointer<Float> operator +(int offset) =>
    Pointer.fromAddress(address + sizeOf<Float>() * offset);