當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Formatter toString()用法及代碼示例


Formatter類toString()方法

  • toString() 方法可在java.util包。
  • toString() 方法用於此格式化程序的字符串表示形式。
  • toString() 方法是一個非靜態方法,它可以通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • toString() 方法可能會在此 Formatter 的字符串表示時拋出異常。
    FormatterClosedException:當這個格式化程序通過調用它的 close() 方法關閉時,這個異常可能會拋出。

用法:

    public String toString();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是String,它適用於輸出的目的地。

例:

// Java program is to demonstrate the example of
// toString() method of Formatter

import java.util.*;

public class ToStringOfFormatter {
    public static void main(String[] args) {
        // Instantiates a StringBuffer and Formmatter
        // object
        StringBuffer sb = new StringBuffer();
        Formatter formatt = new Formatter(sb, Locale.UK);

        // By using format() method is to format
        // a string
        formatt.format("Hi %s !", "IncludeHelp");

        // Display Formatted String
        System.out.println(formatt);

        // By using toString() method is to
        // represent the string formatted by
        // this Formatter
        System.out.println("formatt.toString():" + formatt.toString());
    }
}

輸出

Hi IncludeHelp !
formatt.toString():Hi IncludeHelp !


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Formatter toString() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。