Skip to content

Commit a0e4b8b

Browse files
authored
Update 01_Iterable_and_Iterators.md
1 parent 1984fa4 commit a0e4b8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ch11/01_Iterable_and_Iterators.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
```java
99
public Iterator<E> {
10-
boolean hasNext(); // 如果迭代有更多元素,则返回true
11-
E next(); // 返回迭代中的下一个元素
12-
void remove(); // 删除迭代器返回的最后一个元素
10+
boolean hasNext(); // 如果迭代有更多元素,则返回true
11+
E next(); // 返回迭代中的下一个元素
12+
void remove(); // 删除迭代器返回的最后一个元素
1313
}
1414
```
1515

0 commit comments

Comments
 (0)