在Instant類中,根據傳遞給它的參數,有兩種類型的plus()方法。
plus(long amountToAdd, TemporalUnit unit)
Instant類的plus()方法用於返回此瞬時的副本,並添加指定數量的單位。如果由於支持的單位或其他原因而無法添加數量,則將引發異常。此實例是不可變的,不受此方法調用的影響。
用法:
public Instant plus(long amountToAdd, TemporalUnit unit)
參數:此方法接受兩個參數amountToAdd,這是要添加到結果中的單位數量,可以為負數,而unit是要添加到結果中的單位數量,不能為null。
返回值:此方法基於此瞬間返回Instant並添加指定的數量。
以下示例程序旨在說明plus()方法:
示例1:
// Java program to demonstrate
// Instant.plus() method
import java.time.*;
import java.time.temporal.ChronoUnit;
public class GFG {
public static void main(String[] args)
{
// create an Instant object
Instant instant
= Instant.parse("2018-12-30T19:34:50.63Z");
// add 30 DAYS to Instant
Instant value
= instant.plus(30, ChronoUnit.DAYS);
// print result
System.out.println("Instant after adding 30 DAYS: "
+ value);
}
}
Instant after adding 30 DAYS: 2019-01-29T19:34:50.630Z
plus(TemporalAmount amountToAdd)
Instant類的plus()方法用於返回此瞬時的副本,並將指定的數量添加到日期時間。該數量通常為Period或Duration,但可以是實現TemporalAmount接口的任何其他類型。
用法:
public Instant plus(TemporalAmount amountToAdd)
參數:此方法接受一個參數parameterToAdd,這是要添加的數量,它不能為null。
返回值:此方法基於此瞬間返回的Instant加上添加的值,而不是null
以下示例程序旨在說明plus()方法:
示例1:
// Java program to demonstrate
// Instant.plus() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant inst
= Instant.parse("2018-12-30T19:34:50.63Z");
// add 20 Days to Instant
Instant value
= inst.plus(Period.ofDays(10));
// print result
System.out.println("Instant after adding Days: "
+ value);
}
}
Instant after adding Days: 2019-01-09T19:34:50.630Z
參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#plus(java.time.temporal.TemporalAmount)
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#plus(long,java.time.temporal.TemporalUnit)
相關用法
- Java Instant until()用法及代碼示例
- Java Instant now()用法及代碼示例
- Java Instant with()用法及代碼示例
- Java Instant get()用法及代碼示例
- Java Instant from()用法及代碼示例
- Java Instant isAfter()用法及代碼示例
- Java Instant isBefore()用法及代碼示例
- Java Instant toEpochMilli()用法及代碼示例
- Java Instant truncatedTo()用法及代碼示例
- Java Instant isSupported()用法及代碼示例
- Java Instant getLong()用法及代碼示例
- Java Instant hashCode()用法及代碼示例
- Java Instant getNano()用法及代碼示例
- Java Instant minusMillis()用法及代碼示例
- Java Instant range()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant plus() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。