El método close() es un método integrado de java.util.Formatter que cierra el formateador. En caso de que ya esté cerrado, no tendrá efecto. Cerrarlo significa que liberará los recursos que ya tiene.
Sintaxis :
public void close()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : la función no devuelve nada, simplemente cierra el formateador. Por lo tanto, el tipo de retorno es nulo.
A continuación se muestra la implementación de la función anterior:
Programa 1:
// Java program to implement // the above function import java.util.Formatter; import java.util.Locale; public class Main { public static void main(String[] args) { // Get the string Buffer StringBuffer buffer = new StringBuffer(); // Object creation Formatter frmt = new Formatter(buffer, Locale.CANADA); // Format a new string String name = "My name is Gopal Dave"; frmt.format("What is your name? \n%s !", name); // Print the Formatted string System.out.println(frmt); // Prints the formatted string // again since it is not closed System.out.println(frmt); // close the frmt frmt.close(); } }
Producción:
What is your name? My name is Gopal Dave ! What is your name? My name is Gopal Dave !
Programa 2:
// Java program to implement // the above function import java.util.Formatter; import java.util.Locale; public class Main { public static void main(String[] args) { // Get the string Buffer StringBuffer buffer = new StringBuffer(); // Object creation Formatter frmt = new Formatter(buffer, Locale.CANADA); // Format a new string String name = "Java programs are fun"; frmt.format("%s !", name); System.out.println(frmt); // close the frmt frmt.close(); } }
Producción:
Java programs are fun !
Referencia: https://docs.oracle.com/javase/10/docs/api/java/util/Formatter.html#close()