运算符 + 方法
- @Since('3.3')
- int offset
指向紧随之后第 offset
个 Uint32
的指针。
返回一个指向 Uint32
的指针,其地址是该指针地址加上 offset
倍的 Uint32
的大小。即 (this + offset).address == this.address + offset * sizeOf<Uint32>()
。
此外 (this + offset).value
等价于 this[offset]
,对于设置也是类似。
实现
@Since('3.3')
@pragma("vm:prefer-inline")
Pointer<Uint32> operator +(int offset) =>
Pointer.fromAddress(address + sizeOf<Uint32>() * offset);