Home » Java programming language

Java StringTokenizer hasMoreTokens() Method with Example

StringTokenizer Class hasMoreTokens() method: Here, we are going to learn about the hasMoreTokens() method of StringTokenizer Class with its syntax and example.
Submitted by Preeti Jain, on March 26, 2020

StringTokenizer Class hasMoreTokens() method

  • hasMoreTokens() method is available in java.util package.
  • hasMoreTokens() method is used to check whether there are any more tokens available or not from this Standard time.
  • hasMoreTokens() 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.
  • hasMoreTokens() method does not throw an exception at the time checking more tokens.

Syntax:

    public boolean hasMoreTokens();

Parameter(s):

  • It does not accept any parameter.

Return value:

The return type of the method is boolean, it returns true when there are more token exists (i.e. at least one plus token) otherwise it returns false.

Example:

// Java program to demonstrate the example 
// of boolean hasMoreTokens() method 
// of StringTokenizer

import java.util.*;

public class HasMoreTokensOfStringTokenizer {
 public static void main(String[] args) {
  // Instantiates a StringTokenizer object
  StringTokenizer str_t = new StringTokenizer("Welcome in Java World!!!");

  // By using hasMoreTokens() method isto
  // check whether this str_t object holds
  // any more tokens or not

  System.out.println("str_t.hasMoreTokens(): ");
  for (; str_t.hasMoreTokens();)
   System.out.println(str_t.nextElement());
 }
}

Output

str_t.hasMoreTokens(): 
Welcome
in
Java
World!!!


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.