Instant類的toString()方法使用ISO-8601表示形式返回此瞬間的字符串表示形式,使用的格式與DateTimeFormatter.ISO_INSTANT相同。
用法:
public String toString()
返回值:此方法返回此時刻的ISO-8601表示形式,不能為null。
以下示例程序旨在說明toString()方法:
示例1:
// Java program to demonstrate
// Instant.toString() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-10-28T19:34:50.63Z");
// print Instant using toString()
System.out.println("Instant: "
+ instant.toString());
// addition of 84000 seconds to this instant
Instant returnedValue
= instant.plusSeconds(84000);
// print result Instant using toString()
System.out.println("Returned Instant: "
+ returnedValue.toString());
}
}
示例2:
// Java program to demonstrate
// Instant.toString() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2022-06-21T19:34:50.63Z");
// print Instant using toString()
System.out.println("Instant: "
+ instant);
}
}
參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#toString()
相關用法
- Java Instant now()用法及代碼示例
- Java Instant with()用法及代碼示例
- Java Instant until()用法及代碼示例
- Java Instant get()用法及代碼示例
- Java Instant from()用法及代碼示例
- Java Instant plus()用法及代碼示例
- Java Instant parse()用法及代碼示例
- Java Instant ofEpochMilli()用法及代碼示例
- Java Instant plusSeconds()用法及代碼示例
- Java Instant truncatedTo()用法及代碼示例
- Java Instant getEpochSecond()用法及代碼示例
- Java 8 Clock instant()用法及代碼示例
- Java Instant isSupported()用法及代碼示例
- Java Instant plusNanos()用法及代碼示例
- Java Instant minusSeconds()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant toString() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。