📜  Java中的 OffsetTime toString() 方法及示例

📅  最后修改于: 2022-05-13 01:55:45.056000             🧑  作者: Mango

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: Java/time/OffsetTime.html#toString–