Instant類的minusMillis()方法從該瞬間減去指定的持續時間(以毫秒為單位),並將結果作為即時對象返回。此返回的Instant是不可變的。
用法:
public Instant minusMillis(long millisToSubtract)
參數:此方法接受一個參數millisToSubtract,該參數減去毫秒。
返回值:減去milliSeconds後,此方法返回Instant。
異常:此方法引發以下異常:
- DateTimeException:如果結果超過最大或最小瞬間。
- ArithmeticException:如果發生數字溢出。
以下示例程序旨在說明minusMillis()方法:
示例1:
// Java program to demonstrate
// Instant.minusMillis() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T19:34:50.63Z");
// subtract 64000000 MILLI_OF_SECOND
// means 64000 seconds from this instant
Instant returnedValue
= instant.minusMillis(64000000);
// print result
System.out.println("Returned Instant: "
+ returnedValue);
}
}
輸出:
Returned Instant: 2018-12-30T01:48:10.630Z
示例2:
// Java program to demonstrate
// Instant.minusMillis() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant = Instant.now();
// current Instant
System.out.println("current instant: "
+ instant);
// subtract 36000000 MILLI_OF_SECOND
// means 36000 seconds from this instant
Instant returnedValue
= instant.minusMillis(36000000);
// print result
System.out.println("Returned Instant: "
+ returnedValue);
}
}
輸出:
current instant: 2018-11-27T05:13:12.132Z Returned Instant: 2018-11-26T19:13:12.132Z
參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minusMillis(long)
相關用法
- Java Duration minusMillis(long)用法及代碼示例
- Java Instant with()用法及代碼示例
- Java Instant plus()用法及代碼示例
- Java Instant now()用法及代碼示例
- Java Instant get()用法及代碼示例
- Java Instant until()用法及代碼示例
- Java Instant from()用法及代碼示例
- Java Instant getEpochSecond()用法及代碼示例
- Java Instant atOffset()用法及代碼示例
- Java Instant hashCode()用法及代碼示例
- Java Instant plusSeconds()用法及代碼示例
- Java Instant isBefore()用法及代碼示例
- Java Instant isAfter()用法及代碼示例
- Java 8 Clock instant()用法及代碼示例
- Java Instant parse()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant minusMillis() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。