メソッド nextElement は、Enumeration の Java、NamingEnumeration の next メソッドなどで NoSuchElementException をスローします。これは、列挙内にそれ以上の要素がないことを示します。この例外は RuntimeException の例外のサブクラスであり、Serializable インターフェイスを実装します。 Enumeration に加えて、この例外をスローするクラスがいくつかあります。以下は、さまざまなクラスとそのメソッドです。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
NoSuchElementException の構文、動作、コンストラクター、および例については、次のセクションで説明します。
宣言:
以下は NoSuchElementException の宣言です。
public class NoSuchElementExceptionextends RuntimeException
ご存知のとおり、例外はプログラムの実行中に発生したエラーです。例外がスローされた場合、プログラムは終了し、例外の原因となった行以降のコード行は実行されません。 No suchElementException がスローされる状況はさまざまです。それらは次のとおりです:
以下は NoSuchElementException
の 2 つのコンストラクターです。Java で NoSuchElementException をスローするサンプル プログラムをいくつか見てみましょう。
HashSet に要素がないため NoSuchElementException をスローする Java プログラム。
コード:
import java.util.HashSet; import java.util.Set; //class public class NoExample { //main method public static void main(String[] args) { //create an object for set s Set s = new HashSet(); //select the next element s.iterator().next(); } }
出力:
このプログラムでは、最初にハッシュセットが作成され、next() メソッドを使用してセット内の次の要素が選択されます。セット内に要素がないため、NoSuchElementException がスローされます。これを回避するために、以下に示す setas を繰り返す前にチェックを行うことができます。
import java.util.HashSet; import java.util.Iterator; import java.util.Set; //class public class NoExample { //main method public static void main(String[] args) { Set e = new HashSet(); Iterator it = e.iterator(); //checks whether any element is present while(it.hasNext()) { System.out.println(it.next()); } } }
要素の存在を確認するには、既存のプログラムに while ループとイテレータを追加します。このコードを実行すると、例外がスローされないことがわかります。
HashTable に要素がないため NoSuchElementException をスローする Java プログラム
コード:
import java.util.Hashtable; //class public class NoExample { //main method public static void main(String[] args) { //create an object for hashtable s Hashtable s = new Hashtable(); //select the next element s.elements().nextElement(); } }
出力:
このプログラムでは、最初にハッシュ テーブルが作成され、テーブル内の次の要素が nextElement() メソッドを使用して選択されます。テーブルに要素がないため、NoSuchElementException がスローされます。これを回避するために、以下に示すように、テーブルを反復する前にチェックを行うことができます。
import java.util.Hashtable; import java.util.Iterator; import java.util.Set; //class public class NoExample { //main method public static void main(String[] args) { //create an object for hashtable s Hashtable s = new Hashtable(); Set<String>k = s.keySet(); Iterator<String>i = k.iterator(); while (i.hasNext()) { System.out.println(i.next()); } } }
要素の存在を確認するために、既存のプログラムに while ループ、セット、イテレータを追加します。このコードを実行すると、例外がスローされないことがわかります。
StringTokenizer と Enumeration に要素がないため NoSuchElementException をスローする Java プログラム。
コード:
import java.util.Enumeration; import java.util.Hashtable; import java.util.StringTokenizer; //class public class NoExample { private final static int el = 2; //main method public static void main(String[] args) { //declare a string String sn= "Happy Days never ends"; Hashtable s= new Hashtable(el); Enumeration t = s.elements(); //create an object for StringTokenizer StringTokenizer st = new StringTokenizer(sn, " "); //Print the tokens System.out.println(st.nextToken()); System.out.println(st.nextToken()); System.out.println(st.nextToken()); System.out.println(st.nextToken()); System.out.println(st.nextToken()); st.nextToken(); st.nextElement(); System.out.println(t.nextElement()); System.out.println(t.nextElement()); } }
出力:
In this program, a StringTokenizer is created first, and tokens are selected five times. As there are only four tokens, NoSuchElementException is thrown. In order to avoid this, a check can be given before iterating the Tokenizeras shown below.
import java.util.Enumeration; import java.util.Hashtable; import java.util.StringTokenizer; //class public class NoExample { private final static int el = 2; //main method public static void main(String[] args) { //declare a string String sn= "Happy Days never ends"; Hashtable s= new Hashtable(el); Enumeration t = s.elements(); //create an object for StringTokenizer StringTokenizer st = new StringTokenizer(sn, " "); while(st.hasMoreTokens()) { System.out.println(st.nextToken()); } } }
In order to check the presence of elements, a while loop is added to the existing program. If this code is executed, it can be seen that no exceptions are thrown.
NoSuchElementException is an exception that is thrown when there are no elements retrieved on calling the method next( ) and nextElement( ) in classes Iterator, StringTokenizer, Enumeration and NamingEnumeration. In this article, different aspects such as the declaration, working, constructors, and examples of NoSuchElementException is explained in detail.
以上がJava NoSuchElementExceptionの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。