操作符 + 方法
- int offset
指针指向这个指针后面的第 offset
个 Pointer<T>
。
返回一个指向 Pointer<T>
的指针,其地址是此指针地址加上 Pointer<T>
大小的 offset
倍。即 (this + offset).address == this.address + offset * sizeOf
此外,(this + offset).value
与 this[offset]
等价,设置操作类似。
实现
external Pointer<Pointer<T>> operator +(int offset);