运算符 - 方法

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

指向这个 Double 之前第 offsetDouble 的指针。

等同于 this + (-offset)

返回指向 Double 的指针,其地址是此指针地址的前一个 Double 大小乘以 offset。即 (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);