學習一段時間後我對Java學習中的Iterator&Comparable做出一些總結
***Iterator 接口
Iterator對象稱作迭代器用以方便的實現對容器內元素的
遍歷操作
Returns true if the iteration has more elements
如果迭代器中還有元素可以迭代
(判斷游標右邊是否還有元素可以迭代)
Return the next element in the iteration
返回迭代的下一個元素
(返回游標右邊的元素
Removes from the underlying collection the last element
return by the iteration
刪除從迭代器中指向的當前元素
(iterator對象的remove方法是在迭代過程中刪除元素的
唯一安全的方法)
***Comparable 接口
所有需要排序的類
重寫compareTo方法
Compares this object with the specified object for order
比較此對象與指定對象的順序
返回
返回正數表示 this>obj
返回負數表示 this<obj
From:http://tw.wingwit.com/Article/program/Java/hx/201311/25953.html