操作符 + 方法

  1. @Since('3.3')
Pointer<Bool> operator +(
  1. int offset
)

指向此指针之后第 offsetBool 的指针。

返回指向地址为 offsetBool 大小加上此指针地址的 Bool 的指针。即 (this + offset).address == this.address + offset * sizeOf<Bool>()

此外,(this + offset).value 等价于 this[offset],同样适用于设置。

实现

@Since('3.3')
@pragma("vm:prefer-inline")
Pointer<Bool> operator +(int offset) =>
    Pointer.fromAddress(address + sizeOf<Bool>() * offset);