Java StringBuilder.append(boolean b)
Syntax
StringBuilder.append(boolean b) has the following syntax.
public StringBuilder append(boolean b)
Example
In the following code shows how to use StringBuilder.append(boolean b) method.
String.valueOf( )
is called for each parameter to obtain its string representation.
public class Main {
public static void main(String[] argv) {
StringBuilder sb = new StringBuilder();
sb.append(true);//from www . j av a 2 s .c o m
System.out.println(sb.toString());
}
}
The code above generates the following result.