LocalTime類的ofInstant()方法用於從Instant和作為參數傳遞的區域ID獲取LocalTime的實例。在此方法中,首先,使用區域ID和Instant獲取與UTC /Greenwich的偏移量。然後,從時刻和偏移量計算出本地時間。
用法:
public static LocalTime ofInstant(Instant instant, ZoneId zone)
參數:此方法接受兩個參數:
- instant:這是從中創建LocalTime對象的瞬間。它不能為空。
- zone:這是指定時間的區域。它不能為空。
返回值:此方法返回從傳遞的即時創建的創建的LocalTime對象。
以下示例程序旨在說明ofInstant()方法:
示例1:
// Java program to demonstrate
// LocalTime.ofInstant() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create an Instant object
Instant instant
= Instant.parse("2018-12-17T19:59:44.770Z");
// print Instant
System.out.println("Instant: " + instant);
// create ZoneId
ZoneId zoneid = ZoneId.systemDefault();
// print ZoneId
System.out.println("ZoneId: " + zoneid);
// apply ofInstant()
LocalTime value
= LocalTime.ofInstant(instant, zoneid);
// print result
System.out.println("Generated LocalTime: "
+ value);
}
}
輸出:
Instant: 2018-12-17T19:59:44.770Z ZoneId: Etc/UTC Generated LocalTime: 19:59:44.770
示例2:
// Java program to demonstrate
// LocalTime.ofInstant() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create an Instant object
Instant instant
= Instant.parse("2016-11-11T09:19:22Z");
// print Instant
System.out.println("Instant: " + instant);
// apply ofInstant()
LocalTime value
= LocalTime.ofInstant(instant,
ZoneId.of("Asia/Dhaka"));
// print result
System.out.println("Generated LocalTime: "
+ value);
}
}
輸出:
Instant: 2016-11-11T09:19:22Z Generated LocalTime: 15:19:22
相關用法
- Java OffsetTime ofInstant()用法及代碼示例
- Java ZonedDateTime ofInstant()用法及代碼示例
- Java LocalTime with()用法及代碼示例
- Java LocalTime get()用法及代碼示例
- Java LocalTime plus()用法及代碼示例
- Java LocalTime from()用法及代碼示例
- Java LocalTime until()用法及代碼示例
- Java LocalTime ofNanoOfDay()用法及代碼示例
- Java LocalTime getHour()用法及代碼示例
- Java LocalTime ofSecondOfDay()用法及代碼示例
- Java LocalTime hashCode()用法及代碼示例
- Java LocalTime isBefore()用法及代碼示例
- Java LocalTime getSecond()用法及代碼示例
- Java LocalTime getMinute()用法及代碼示例
- Java LocalTime isSupported()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 LocalTime ofInstant() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。