Java StringBuffer.append(boolean b)
Syntax
StringBuffer.append(boolean b) has the following syntax.
public StringBuffer append(boolean b)
Example
In the following code shows how to use StringBuffer.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) {
StringBuffer sb = new StringBuffer();
sb.append(true);/*from w w w .j av a2 s .co m*/
System.out.println(sb.toString());
}
}
The code above generates the following result.