下列( )不是Iterator接口所定义的方法? A、nextElement() B、next() remove() nextElement() C、hasNext() D、 remove()
时间: 2024-04-04 17:31:28 浏览: 153
详谈Enumeration接口和Iterator接口的区别
A、nextElement() 不是Iterator接口所定义的方法。
next()、hasNext()、remove() 是Iterator接口定义的方法。其中,next() 返回迭代器中的下一个元素,hasNext() 判断是否还有下一个元素,remove() 从迭代器中删除最后一个元素。而 nextElement() 不是 Iterator 接口所定义的方法,而是 Enumeration 接口中的方法。
阅读全文