當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Enumeration nextElement()用法及代碼示例


實現Enumeration接口的對象生成一係列元素,一次生成一個。如果此枚舉對象至少要提供一個以上的元素,則使用枚舉的nextElement()方法返回該枚舉的下一個元素。此方法用於從枚舉中獲取元素。

用法:

E nextElement()

參數:此方法不接受任何內容。


返回值:此方法在此枚舉的下一個元素上返回true。

異常:如果不再存在任何元素,則此方法將引發NoSuchElementException。

以下示例程序旨在說明nextElement()方法:
示例1:

// Java program to demonstrate 
// Enumeration.nextElement() method 
  
import java.util.*; 
  
public class GFG { 
  
    @SuppressWarnings({ "unchecked", "rawtypes" }) 
    public static void main(String[] args) 
    { 
  
        // create a Enumeration and vector object 
        Enumeration<Integer> company; 
        Vector<Integer> employees = new Vector<Integer>(); 
  
        // add values to employees 
        employees.add(1001); 
        employees.add(2001); 
        employees.add(3001); 
        employees.add(4001); 
        company = employees.elements(); 
  
        while (company.hasMoreElements()) { 
            // get elements using nextElement() 
            System.out.println("Emp ID = "
                               + company.nextElement()); 
        } 
    } 
}
輸出:
Emp ID = 1001
Emp ID = 2001
Emp ID = 3001
Emp ID = 4001

示例2:

// Java program to demonstrate 
// Enumeration.nextElement() method 
  
import java.util.*; 
  
public class GFG { 
  
    @SuppressWarnings({ "unchecked", "rawtypes" }) 
    public static void main(String[] args) 
    { 
  
        // create a Enumeration and vector object 
        Enumeration<String> Users; 
        Vector<String> user = new Vector<String>(); 
  
        // add Users 
        user.add("Aman Singh"); 
        user.add("Raunak Singh"); 
        user.add("Siddhant Gupta"); 
        Users = user.elements(); 
  
        while (Users.hasMoreElements()) { 
            // get elements using nextElement() 
            System.out.println(Users.nextElement()); 
        } 
    } 
}
輸出:
Aman Singh
Raunak Singh
Siddhant Gupta

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/util/Enumeration.html#nextElement()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Enumeration nextElement() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。