Home » Java programming language

Java Scanner hasNextFloat() Method with Example

Scanner Class hasNextFloat() method: Here, we are going to learn about the hasNextFloat() method of Scanner Class with its syntax and example.
Submitted by Preeti Jain, on February 18, 2020

Scanner Class hasNextFloat() method

  • hasNextFloat() method is available in java.util package.
  • hasNextFloat() method is used to check whether this Scanner's next input can be manipulated as a float input or not.
  • hasNextFloat() 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.
  • hasNextFloat() method may throw an exception at the time of checking float value.
    IllegalStateException: This exception may throw when this Scanner is not opened.

Syntax:

    public boolean hasNextFloat();

Parameter(s):

  • It does not accept any parameter.

Return value:

The return type of the method is boolean, it returns true when this Scanner next token is a valid float value otherwise it returns false.

Example:

// Java program to demonstrate the example 
// of boolean hasNextFloat() method of Scanner 

import java.util.*;

public class HasNextFloatOfScanner {
    public static void main(String[] args) {
        String str = "Hi, [IncludeHelp] + 10.0 true ";

        // Instantiates a Scanner object with
        // the given string str
        Scanner sc = new Scanner(str);

        // Display str
        System.out.println("sc.nextLine(): " + sc.nextLine());

        // By using hasNextFloat() method is
        // to check whether this Scanner next token
        // contain valid float or not
        boolean status = sc.hasNextFloat();
        System.out.println("sc.hasNextFloat(): " + sc.hasNextFloat());

        // By using close() method is to 
        // close the Scanner object
        sc.close();
    }
}

Output

sc.nextLine(): Hi, [IncludeHelp] + 10.0 true 
sc.hasNextFloat(): false



Comments and Discussions!

Load comments ↻






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