位于 address + sizeOf() * index 的 32 位无符号整数。
address + sizeOf() * index
在存储之前,Dart 整数会被截断至 32 位(类似于执行 .toUnsigned(32)),在加载时 32 位值会用零扩展。
.toUnsigned(32)
address 必须是 4 字节对齐的。
external int operator [](int index);