java.util.Formatter.toString() 方法返回撥用toString()方法在目的地的輸出結果。
以下是java.util.Formatter.toString()方法的宣告
public String toString()
NA
此方法返回的目的地為輸出呼叫的toString()的結果
FormatterClosedException -- 如果該格式已經被關閉通過呼叫它的close()方法
下面的範例演示java.util.Formatter.toString()方法的用法。
package com.yiibai; import java.util.Formatter; import java.util.Locale; public class FormatterDemo { public static void main(String[] args) { // create a new formatter StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer, Locale.US); // format a new string String name = "World"; formatter.format("Hello %s !", name); // print the formatted string with default locale System.out.println("" + formatter); // print the formatter as a string System.out.println("" + formatter.toString()); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Hello World ! Hello World !