Java offsetTime toString()方法及示例
Java中OffsetTime类的 toString() 方法将该日期输出为字符串,例如 “11:25:10+11:10 “就是一个例子。
语法:
public String toString()
参数: 该方法不接受任何参数。
返回值: 它返回这个日期的一个字符串表示,而不是空的。
下面的程序说明了toString()方法。
// Java program to demonstrate the toString() method
import java.time.OffsetTime;
public class GFG {
public static void main(String[] args)
{
// Gets the current time
OffsetTime time = OffsetTime.now();
// Gets the local time
System.out.println("Local-time in string format: "
+ time.toString());
}
}
输出。
Local-time in string format: 04:04:24.595Z
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#toString-