PointerPointer<T extends NativeType> 扩展

Pointer 上的扩展,针对类型参数 Pointer 进行了特殊化。

属性

value Pointer<T>
地址为 address 的指针。
getter/setter 对

方法

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

运算符

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