Example usage for java.lang StringBuffer trimToSize

List of usage examples for java.lang StringBuffer trimToSize

Introduction

In this page you can find the example usage for java.lang StringBuffer trimToSize.

Prototype

@Override
public synchronized void trimToSize() 

Source Link

Usage

From source file:Main.java

public static void main(String[] argv) {
    StringBuffer sb = new StringBuffer();
    sb.append("java2s.com");

    System.out.println(sb.length());
    System.out.println(sb.capacity());

    sb.trimToSize();

    System.out.println(sb.length());
    System.out.println(sb.capacity());

}