📄 nulliterator.java
字号:
package com.croftsoft.core.util; import java.util.*; /********************************************************************* * A singleton null object Iterator implementation. * * @version * 2003-05-12 * @since * 2003-05-10 * @author * <a href="http://www.croftsoft.com/">David Wallace Croft</a> *********************************************************************/ public final class NullIterator implements Iterator ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// { public static final NullIterator INSTANCE = new NullIterator ( ); ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// public boolean hasNext ( ) { return false; } public Object next ( ) { throw new NoSuchElementException ( ); } public void remove ( ) { throw new UnsupportedOperationException ( ); } ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// private NullIterator ( ) { } ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -