operator - 方法
- int offset
指向距此指针 offset
个 T
的指针。
等价于 this + (-offset)
。
返回指向在当前指针地址之前 offset
倍的 T
大小的地址的指针。即 (this - offset).address == this.address - offset * sizeOf
。
另外,(this - offset).value
等价于 this[-offset]
,同样也应用于赋值操作。
实现
external Pointer<T> operator -(int offset);