operator + 方法

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

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

返回指向地址为 offset 倍的 Double 大小加上此指针地址的 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);