El método trimToSize() de la clase StringBuffer es el método incorporado que se utiliza para recortar la capacidad utilizada para la secuencia de caracteres del objeto StringBuffer. Si el búfer utilizado por el objeto StringBuffer es más grande de lo necesario para contener su secuencia actual de caracteres, entonces se llama a este método para cambiar el tamaño del objeto StringBuffer para convertir este objeto en un espacio más eficiente. Llamar a este método puede, pero no es obligatorio, afectar el valor devuelto por una llamada posterior al método de capacidad().
Sintaxis:
public void trimToSize()
Devoluciones: este método no devuelve nada.
Los siguientes programas ilustran el método StringBuffer.trimToSize():
Ejemplo 1:
// 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()); } }
Capacity before applying trimToSize() = 29 String = GeeksForGeeksContribute Capacity after applying trimToSize() = 23
Ejemplo 2:
// 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()); } }
Capacity before applying trimToSize() = 34 String = GeeksForGeeks classes Capacity after applying trimToSize() = 21
Referencias:
https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#trimToSize()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA