forEach 方法

void forEach(
  1. void action(
    1. E element
    )
)
override

遍历此可迭代的每个元素,并按迭代顺序调用 action

示例

final numbers = <int>[1, 2, 6, 7];
numbers.forEach(print);
// 1
// 2
// 6
// 7

实现

void forEach(void action(E element)) {
  int length = this.length;
  for (int i = 0; i < length; i++) {
    action(this[i]);
    if (length != this.length) {
      throw ConcurrentModificationError(this);
    }
  }
}