java.time.OffsetDateTime.toOffsetTime()方法

2019-10-16 22:43:34

java.time.OffsetDateTime.toOffsetTime()方法獲取OffsetTime的值。

宣告

以下是java.time.OffsetDateTime.toOffsetTime()方法的宣告。

public OffsetTime toOffsetTime()

返回值

表示時間和偏移量的OffsetTime,不為null

範例

以下範例顯示了java.time.OffsetDateTime.toOffsetTime()方法的用法。

package com.yiibai;

import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {

      OffsetDateTime date = OffsetDateTime.now();
      System.out.println(date.toOffsetTime());  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

14:19:10.353+05:30