java.time.chrono.ThaiBuddhistDate類的toString()方法用於以字符串格式表示此ThaiBuddhist日期。該方法僅返回該對象的text-format,該對象易於讀取並包含所需的日期信息。
用法:
public String toString()
覆蓋:toString()方法覆蓋Java中的Object類。
參數:此方法不接受任何參數作為參數。
返回值:此方法以字符串格式返回ThaiBuddhist日期。
以下示例程序旨在說明toString()方法:
程序1:
// Java program to demonstrate
// toString() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate.now();
// Getting string represntation
// of ThaiBuddhist date
// by using toString() method
String date = hidate.toString();
// Display the result
System.out.println(
"ThaiBuddhistdate:"
+ date);
}
catch (DateTimeException e) {
System.out.println(
"passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
輸出:
ThaiBuddhistdate:ThaiBuddhist BE 2563-05-08
程序2:
// Java program to demonstrate
// toString() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate.of(
1345, 05, 23);
// Getting string represntation
// of ThaiBuddhist date
// by using toString() method
String date = hidate.toString();
// Display the result
System.out.println(
"ThaiBuddhistdate:"
+ date);
}
catch (DateTimeException e) {
System.out.println(
"passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
輸出:
ThaiBuddhistdate:ThaiBuddhist BE 1345-05-23
參考:https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#toString-
相關用法
- Java ThaiBuddhistDate from()用法及代碼示例
- Java ThaiBuddhistDate of()用法及代碼示例
- Java ThaiBuddhistDate atTime()用法及代碼示例
- Java ThaiBuddhistDate equals()用法及代碼示例
- Java ThaiBuddhistDate now(Clock)用法及代碼示例
- Java ThaiBuddhistDate lengthOfMonth()用法及代碼示例
- Java ThaiBuddhistDate range()用法及代碼示例
- Java ThaiBuddhistDate hashCode()用法及代碼示例
- Java ThaiBuddhistDate getLong()用法及代碼示例
- Java ThaiBuddhistDate getChronology()用法及代碼示例
- Java ThaiBuddhistDate getEra()用法及代碼示例
- Java ThaiBuddhistDate now(ZoneId)用法及代碼示例
- Java ThaiBuddhistDate minus(long, TemporalUnit)用法及代碼示例
- Java LinkedHashSet toString()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ThaiBuddhistDate toString() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。