Open In App

StringTokenizer hasMoreElements() Method in Java with Examples

Last Updated : 28 Jan, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The hasMoreElements() method of StringTokenizer class also checks whether there are any more tokens available with this StringTokenizer. It is similar to the hasMoreTokens(). The method exists exclusively so that the Enumeration interface of this class can be implemented.

Syntax:

public boolean hasMoreElements()

Parameters: The method does not take any parameters.

Return Value: The method returns boolean True if the availability of at least one more token is found in the string after the current position else false.

Below programs illustrate the working of hasMoreElements() Method of StringTokenizer:
Example 1:




// Java code to illustrate hasMoreElements() method
  
import java.util.*;
  
public class StringTokenizer_Demo {
    public static void main(String args[])
    {
        // Creating a StringTokenizer
        StringTokenizer str_arr
            = new StringTokenizer(
                "Lets practice at GeeksforGeeks");
  
        // Counting the tokens
        System.out.println("The number of Tokens are: "
                           + str_arr.countTokens());
  
        // Checking for any tokens
        System.out.println(str_arr.hasMoreElements());
  
        // Checking and displaying the Tokens
        while (str_arr.hasMoreElements()) {
            System.out.println("The Next token: "
                               + str_arr.nextToken());
        }
    }
}


Output:

The number of Tokens are: 4
true
The Next token: Lets
The Next token: practice
The Next token: at
The Next token: GeeksforGeeks

Example 2:




// Java code to illustrate hasMoreElements() method
  
import java.util.*;
  
public class StringTokenizer_Demo {
    public static void main(String args[])
    {
        // Creating a StringTokenizer
        StringTokenizer str_arr
            = new StringTokenizer("");
  
        // Counting the tokens
        System.out.println("The number of Tokens are: "
                           + str_arr.countTokens());
  
        // Checking for any tokens
        System.out.println(str_arr.hasMoreElements());
    }
}


Output:

The number of Tokens are: 0
false


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads