當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Instant minusSeconds()用法及代碼示例


Instant類的minusSeconds()方法從此瞬間減去指定的第二個值,並將結果作為即時對象返回。這一瞬間是一成不變的。

用法:

public Instant minusSeconds(long secondsToSubtract)

參數:此方法接受一個參數secondsToSubtract,這是要減去的秒數。


返回值:減去秒後,此方法返回Instant。

異常:此方法引發以下異常:

  • DateTimeException:如果結果超過最大或最小瞬間。
  • ArithmeticException:如果發生數字溢出。

以下示例程序旨在說明minusSeconds()方法:

示例1:

// Java program to demonstrate 
// Instant.minusSeconds() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a Instant object 
        Instant instant 
            = Instant.parse("2018-10-30T09:05:55.13Z"); 
  
        // current Instant 
        System.out.println("Initailize instant: "
                           + instant); 
  
        // subtract 4300 seconds from this instant 
        Instant returnedValue 
            = instant.minusSeconds(4300); 
  
        // print result 
        System.out.println("Returned Instant: "
                           + returnedValue); 
    } 
}
輸出:
Initailize instant: 2018-10-30T09:05:55.130Z
Returned Instant: 2018-10-30T07:54:15.130Z

示例2:

// Java program to demonstrate 
// Instant.minusSeconds() 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 54000 from this instant 
        Instant returnedValue 
            = instant.minusSeconds(54000); 
  
        // print result 
        System.out.println("Returned Instant: "
                           + returnedValue); 
    } 
}
輸出:
Current instant: 2018-11-27T06:44:04.901Z
Returned Instant: 2018-11-26T15:44:04.901Z

參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minusSeconds(long)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant minusSeconds() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。