Java Collections 的emptyEnumeration() 方法用于获取Java 中不包含任何元素的空枚举。
用法:
public static <T> Enumeration<T> emptyEnumeration()
参数:此方法没有参数。
返回类型:此方法将返回一个空枚举。
异常:这种方法不会出现任何异常。
示例 1:Java 程序检查枚举是否有更多元素。所以我们使用hasMoreElements() 方法。这将返回一个布尔值。如果枚举包含元素,则返回 true,否则返回 false。
用法:
object.hasMoreElements()
其中object是一个枚举对象
Java
// Java program to illustrate the
// Collections emptyEnumeration()
// Method
import java.util.*;
public class GFG {
// main method
public static void main(String[] args)
{
// create an empty enumeration
Enumeration<String> obj
= Collections.emptyEnumeration();
// check more elements or not
System.out.println(obj.hasMoreElements());
}
}
输出
false
示例 2:在此示例中,我们将使用 nextElement() 获取空枚举的下一个元素。
用法:
object.nextElement()
其中object是一个枚举对象
Java
// Java program to illustrate the
// Collections emptyEnumeration()
// Method
import java.util.*;
public class GFG {
// main method
public static void main(String[] args)
{
// create an array list
List<String> data = new ArrayList<String>();
// add elements to the list
data.add("java");
data.add("python");
data.add("php");
data.add("html/css");
// create emuneration object
Enumeration<String> enm
= Collections.emptyEnumeration();
// get the elements
while (enm.hasMoreElements()) {
System.out.println(enm.nextElement());
}
// display
System.out.println("Empty");
}
}
输出
Empty
相关用法
- Java Java.util.Collections.rotate()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
- Java Java.util.Collections.frequency()用法及代码示例
- Java Collections.reverse()用法及代码示例
- Java Collections.shuffle()用法及代码示例
- Java Collections singletonMap()用法及代码示例
- Java Collections min()用法及代码示例
- Java Collections max()用法及代码示例
- Java Collections addAll()用法及代码示例
- Java Collections asLifoQueue()用法及代码示例
- Java Collections unmodifiableCollection()用法及代码示例
- Java Collections unmodifiableSortedMap()用法及代码示例
- Java Collections unmodifiableSet()用法及代码示例
- Java Collections unmodifiableMap()用法及代码示例
- Java Collections unmodifiableList()用法及代码示例
- Java Collections checkedCollection()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections checkedSortedMap()用法及代码示例
- Java Collections checkedSortedSet()用法及代码示例
- Java Collections enumeration()用法及代码示例
- Java Collections copy()用法及代码示例
- Java Collections fill()用法及代码示例
- Java Collections indexOfSubList()用法及代码示例
注:本文由纯净天空筛选整理自sireeshakanneganti112大神的英文原创作品 Java Collections emptyEnumeration() Method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。