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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。