Java Formatter close()方法及示例

Java Formatter close()方法及示例

close() 方法是 java.util.Formatter 的一个内置方法,用于关闭formatter。如果它已经被关闭了,那么它将不会有任何影响。关闭它意味着它将释放它已经持有的资源。

语法:

public void close()

参数 :该函数不接受任何参数。

返回值 :该函数不返回任何东西,它只是关闭了格式化器。因此,返回类型为void。

下面是上述函数的实现。

程序 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();
    }
}

输出。

What is your name? 
My name is Gopal Dave !
What is your name? 
My name is Gopal Dave !

程序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();
    }
}

输出。

Java programs are fun !

**参考资料: ** https://docs.oracle.com/javase/10/docs/api/java/util/Formatter.html#close()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程