Constructs a new StringBuffer using the default capacity which is 16.
()
| 51 | * Constructs a new StringBuffer using the default capacity which is 16. |
| 52 | */ |
| 53 | public StringBuffer() { |
| 54 | super(); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Constructs a new StringBuffer using the specified capacity. |