运算符 - 方法

Pointer<T> operator -(
  1. int offset
)

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

等同于 this + (-offset)

返回指向地址为 offset 倍的 T 大小的指针。即 (this - offset).address == this.address - offset * sizeOf<T>()

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

实现

external Pointer<T> operator -(int offset);