The parseBoolean() method of Boolean Class is a built in static method of the class java.lang.Boolean which is used to convert a given string to its boolean value.
Syntax:
Boolean.parseBoolean(String value)
Parameters: It takes one parameter value of type string which contains the value which is to be converted to boolean.
Return Value: It returns a primitive boolean value. It returns the true if the given value is equals “true” ignoring cases. Else it returns false.
Below are java code to illustrate parseBoolean() method:
Example 1:
class GeeksforGeeks {
public static void main(String[] args)
{
String value = "TrUe" ;
boolean result = Boolean.parseBoolean(value);
System.out.println(result);
}
}
|
Example 2:
class GeeksforGeeks {
public static void main(String[] args)
{
String value = "true" ;
boolean result = Boolean.parseBoolean(value);
System.out.println(result);
}
}
|
Example 3:
class GeeksforGeeks {
public static void main(String[] args)
{
String value = "gfg" ;
boolean result = Boolean.parseBoolean(value);
System.out.println(result);
}
}
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!