Iterator hasNext() Method

后端 未结 0 1821
小鲜肉
小鲜肉 2021-01-14 01:34

Why do we implement hasNext method as

public boolean hasNext() {
            if(current != null) 
                return true;
            return false;
}


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题