Home »
Java programming language
Java Scanner hasNextBoolean() Method with Example
Scanner Class hasNextBoolean() method: Here, we are going to learn about the hasNextBoolean() method of Scanner Class with its syntax and example.
Submitted by Preeti Jain, on February 18, 2020
Scanner Class hasNextBoolean() method
- hasNextBoolean() method is available in java.util package.
- hasNextBoolean() method is used to check whether this Scanner's next input can be manipulated as a boolean input or not.
- hasNextBoolean() 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.
- hasNextBoolean() method may throw an exception at the time of checking boolean value.
IllegalStateException: This exception may throw when this Scanner is not opened.
Syntax:
public boolean hasNextBoolean();
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 boolean value otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean hasNextBoolean() method of Scanner
import java.util.*;
public class HasNextBooleanOfScanner {
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 hasNextBoolean() method is
// to check whether this Scanner next token
// contain valid boolean or not
boolean status = sc.hasNextBoolean();
System.out.println("sc.hasNextBoolean(): " + sc.hasNextBoolean());
// By using close() method is to
// close the Scanner object
sc.close();
}
}
Output
sc.nextLine(): Hi, [IncludeHelp] + 10.0 true
sc.hasNextBoolean(): false