StringBuffer trimToSize() method in Java with Examples Last Updated : 04 Dec, 2018 Comments Improve Suggest changes 4 Likes Like Report The trimToSize() method of StringBuffer class is the inbuilt method used to trims the capacity used for the character sequence of StringBuffer object. If the buffer used by StringBuffer object is larger than necessary to hold its current sequence of characters, then this method is called to resize the StringBuffer object for converting this object to more space efficient. Calling this method may, but is not required to, affect the value returned by a subsequent call to the capacity() method. Syntax: public void trimToSize() Returns: This method does not return anything. Below programs illustrate the StringBuffer.trimToSize() method: Example 1: Java // Java program to demonstrate // the trimToSize() Method. class GFG { public static void main(String[] args) { // create a StringBuffer object // with a String pass as parameter StringBuffer str = new StringBuffer("GeeksForGeeks"); // add more string to StringBuffer str.append("Contribute"); // print capacity System.out.println("Capacity before " + "applying trimToSize() = " + str.capacity()); // applying trimToSize() Method str.trimToSize(); // print string System.out.println("String = " + str.toString()); // print capacity System.out.println("Capacity after" + " applying trimToSize() = " + str.capacity()); } } Output: Capacity before applying trimToSize() = 29 String = GeeksForGeeksContribute Capacity after applying trimToSize() = 23 Example 2: Java // Java program to demonstrate // the trimToSize() Method. class GFG { public static void main(String[] args) { // create a StringBuffer object // with a String pass as parameter StringBuffer str = new StringBuffer(); // add more string to StringBuffer str.append("GeeksForGeeks classes"); // print capacity System.out.println("Capacity before" + " applying trimToSize() = " + str.capacity()); // applying trimToSize() Method str.trimToSize(); // print string System.out.println("String = " + str.toString()); // print capacity System.out.println("Capacity after " + "applying trimToSize() = " + str.capacity()); } } Output: Capacity before applying trimToSize() = 34 String = GeeksForGeeks classes Capacity after applying trimToSize() = 21 References: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#trimToSize() Create Quiz Comment A AmanSingh2210 Follow 4 Improve A AmanSingh2210 Follow 4 Improve Article Tags : Java java-basics Java-lang package Java-Functions java-StringBuffer +1 More Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like