Java StringBuilder.append(double d)
Syntax
StringBuilder.append(double d) has the following syntax.
public StringBuilder append(double d)
Example
In the following code shows how to use StringBuilder.append(double d) method.
/*from w ww . j a v a2 s.c om*/
public class Main {
public static void main(String[] argv) {
StringBuilder sb = new StringBuilder();
sb.append(1.2);
System.out.println(sb.toString());
}
}
The code above generates the following result.