Instant類的plusSeconds()方法將作為參數傳遞的秒值添加到此瞬時,並將結果作為瞬時對象返回。此返回的Instant是不可變的。
用法:
public Instant plusSeconds(long secondsToAdd)
參數:此方法接受一個參數secondsToAdd,這是要添加的秒數。
返回值:添加秒數後,此方法返回Instant。
異常:此方法引發以下異常:
- DateTimeException:如果結果超過最大或最小瞬間。
- ArithmeticException:如果發生數字溢出。
以下示例程序旨在說明plusSeconds()方法:
示例1:
// Java program to demonstrate
// Instant.plusSeconds() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-10-28T19:34:50.63Z");
// print Instant
System.out.println("Instant: "
+ instant);
// addition of 84000 seconds to this instant
Instant returnedValue
= instant.plusSeconds(84000);
// print result
System.out.println("Returned Instant: "
+ returnedValue);
}
}
輸出:
Instant: 2018-10-28T19:34:50.630Z Returned Instant: 2018-10-29T18:54:50.630Z
示例2:
// Java program to demonstrate
// Instant.plusSeconds() 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);
// addition of 930000 seconds
// to this instant
Instant returnedValue
= instant.plusSeconds(930000);
// print result
System.out.println("Returned Instant: "
+ returnedValue);
}
}
輸出:
Current instant: 2018-11-28T05:39:46.572Z Returned Instant: 2018-12-08T23:59:46.572Z
參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#plusSeconds(long)
相關用法
- Java LocalTime plusSeconds()用法及代碼示例
- Java LocalDateTime plusSeconds()用法及代碼示例
- Java OffsetDateTime plusSeconds()用法及代碼示例
- Java ZonedDateTime plusSeconds()用法及代碼示例
- Java Duration plusSeconds(long)用法及代碼示例
- Java Instant until()用法及代碼示例
- Java Instant with()用法及代碼示例
- Java Instant now()用法及代碼示例
- Java Instant get()用法及代碼示例
- Java Instant from()用法及代碼示例
- Java Instant plus()用法及代碼示例
- Java Instant atOffset()用法及代碼示例
- Java Instant minusSeconds()用法及代碼示例
- Java Instant atZone()用法及代碼示例
- Java Instant compareTo()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant plusSeconds() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。