Skip to content

Commit bf12543

Browse files
committed
Iterator(The madman implementation)
1 parent 2dcf310 commit bf12543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

group18/935542673/Coding/src/com/ikook/basic_data_structure/MyIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public interface MyIterator {
44

5-
public boolean hesNext(); // 判断是否有元素没有被遍历
5+
public boolean hasNext(); // 判断是否有元素没有被遍历
66

77
public Object next(); // 返回游标当前位置的元素并将游标移动到下一个位置
88

0 commit comments

Comments
 (0)