Home »
Java programming language
Java StringTokenizer hasMoreElements() Method with Example
StringTokenizer Class hasMoreElements() method: Here, we are going to learn about the hasMoreElements() method of StringTokenizer Class with its syntax and example.
Submitted by Preeti Jain, on March 26, 2020
StringTokenizer Class hasMoreElements() method
- hasMoreElements() method is available in java.util package.
- hasMoreElements() method is used to check whether this Standard Time has existed more elements or not.
- hasMoreElements() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- hasMoreElements() method does not throw an exception at the time checking more elements.
Syntax:
public boolean hasMoreElements();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is boolean, it returns true when this StandardTime holds more elements otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean hasMoreElements() method
// of StringTokenizer
import java.util.*;
public class HasMoreElementsOfStringTokenizer {
public static void main(String[] args) {
// Instantiates a StringTokenizer object
StringTokenizer str_t = new StringTokenizer("Welcome in Java World!!!");
// By using hasMoreElements() method isto
// check whether this str_t object holds more
// elements or not
System.out.println("str_t.hasMoreElements(): ");
for (; str_t.hasMoreElements();)
System.out.println(str_t.nextElement());
}
}
Output
str_t.hasMoreElements():
Welcome
in
Java
World!!!