操作符 + 方法

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

指向此指针之后的 offsetT 的指针。

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

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

实现

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