操作符 - 方法

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

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

相当于 this + (-offset)

返回一个指向 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);