操作符 + 方法

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

指向此指针之后第 offsetDouble 的指针。

返回一个指向 Double 的指针,其地址为此指针地址之后 offset 倍的 Double 的大小。即 (this + offset).address == this.address + offset * sizeOf<Double>()

此外,(this + offset).value 等同于 this[offset],设置操作类似。

实现

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