Home  >  Article  >  Java  >  What is the importance of parseBoolean() method in Java?

What is the importance of parseBoolean() method in Java?

WBOY
WBOYforward
2023-08-28 15:29:031251browse

What is the importance of parseBoolean() method in Java?

parseBoolean() method is an important method of the Boolean class. parseBoolean() is a static method that parses String method parameters into Boolean objects. The parseBoolean() method of the Boolean class returns the Boolean value represented by the string argument.

Syntax

public static boolean parseBoolean(String s)

Example

import java.util.Scanner;
public class ParseBooleanMethodTest {
   public static void main(String[] args) {
      System.out.print("Are you ready to play cricket(true/false)?");
      Scanner scanner = new Scanner(System.in);
      String str = scanner.nextLine();
      scanner.close();
<strong>      //</strong> Convert the user input into boolean<strong>
</strong>      boolean answer = Boolean.parseBoolean(str);
      if(answer) {
         System.out.println("Yes, I am ready to play cricket");
      } else {
         System.out.println("No, I am not yet ready");
      }
   }
}

Output

Are you ready to play cricket(true/false)? true
Yes, I am ready to play cricket

The above is the detailed content of What is the importance of parseBoolean() method in Java?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete