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.
public static boolean parseBoolean(String s)
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"); } } }
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!