The java.lang.String.valueOf(boolean b) method returns the string representation of the boolean argument.
DeclarationFollowing is the declaration for java.lang.String.valueOf() method
public static String valueOf(boolean b)Parameters
b − This is a boolean value.
Return Valueif the argument is true, a string equal to "true" is returned else, a string equal to "false" is returned.
ExceptionNA
ExampleThe following example shows the usage of java.lang.String.valueOf() method.
package com.tutorialspoint; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = String.valueOf(true); String str2 = String.valueOf(false); // print the string representation of boolean System.out.println(str1); System.out.println(str2); } }
Let us compile and run the above program, this will produce the following result −
true false
java_lang_string.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4