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 !
相關用法
- Java Formatter ioException()用法及代碼示例
- Java Formatter out()用法及代碼示例
- Java Formatter locale()用法及代碼示例
- Java Formatter flush()用法及代碼示例
- Java Formatter format()用法及代碼示例
- Java Formatter close()用法及代碼示例
- Java FormatStyle values()用法及代碼示例
- Java FormatStyle valueOf()用法及代碼示例
- Java FloatBuffer put()用法及代碼示例
- Java File isHidden()用法及代碼示例
- Java Field getType()用法及代碼示例
- Java File renameTo()用法及代碼示例
- Java File setWritable()用法及代碼示例
- Java File listFiles()用法及代碼示例
- Java FilterReader reset()用法及代碼示例
- Java FileStore getBlockSize()用法及代碼示例
- Java Field setByte()用法及代碼示例
- Java FilterInputStream markSupported()用法及代碼示例
- Java Field isEnumConstant()用法及代碼示例
- Java Float toString()用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Formatter toString() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。