运算符 - 方法
- @Since('3.3')
- int offset
指向此 Float 之前 offset
个位置的指针。
相当于 this + (-offset)
。
返回一个指向 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);