Java中的即时 toString() 方法和示例
Instant 类的toString()方法使用 ISO-8601 表示形式返回此时刻的字符串表示形式,使用的格式与 DateTimeFormatter.ISO_INSTANT 相同。
句法:
public String toString()
返回:此方法返回此 instant 的 ISO-8601 表示,而不是 null。
下面的程序说明了 toString() 方法:
方案一:
// 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());
}
}
方案二:
// 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: Java/time/Instant.html#toString()