2020-04-05
作者:
八月飞花 | 来源:发表于
2020-06-07 09:59 被阅读0次class Iterator {
//传入一个集合
constructor(container) {
this.list = container.list;
this.index = 0;
};
//下一个
next() {
if (this.hasNext()) {
return this.list[this.index++];
}
};
//判断有没有下一个
hasNext() {
if (this.index >= this.list.length) {
return false; //到头了
}
return true; //没到头
};
}
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
本文标题:2020-04-05
本文链接:https://www.haomeiwen.com/subject/omsmphtx.html
网友评论