PointerPointer<T extends NativeType> 扩展

针对类型参数 Pointer 特化的 Pointer 扩展。

属性

value Pointer<T>
地址 处的指针。
获取/设置对

方法

elementAt(int index) Pointer<Pointer<T>>
指针算术(考虑元素大小)。

运算符

operator +(int offset) Pointer<Pointer<T>>
指向此指针之后第 offsetPointer<T> 的指针。
operator -(int offset) Pointer<Pointer<T>>
指向此指针之前第 offsetPointer<T> 的指针。
operator [](int index) Pointer<T>
从以 index 为偏移量的此位置加载 Dart 值。
operator []=(int index, Pointer<T> value) → void
将 Dart 值存储到以 index 为偏移量的此位置。