当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Duration toSecondsPart()用法及代码示例


java.time包中的Duration Class的toSecondsPart()方法用于将持续时间的值(以秒为单位)除以分钟数(以分钟为单位)。

用法:

public long toSecondsPart()

参数:此方法不接受任何参数。


返回值:此方法返回一个long值,该值是此持续时间中的秒数,方法是将一分钟的秒数除以一分钟。

以下示例说明了Duration.toSecondsPart()方法:

示例1:

// Java code to illustrate toSecondsPart() method 
  
import java.time.Duration; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Duration using parse() method 
        Duration duration = Duration.parse("P2DT3H4M"); 
  
        System.out.println("Duration: "
                           + duration); 
  
        // Get the number of seconds 
        // using toSecondsPart() method 
        System.out.println(duration.toSecondsPart()); 
    } 
}
输出:
Duration: PT51H4M
0

示例2:

// Java code to illustrate toSecondsPart() method 
  
import java.time.Duration; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Duration using ofSeconds() method 
        Duration duration 
            = Duration.ofSeconds(10); 
  
        System.out.println("Duration: "
                           + duration); 
  
        // Get the number of seconds 
        // using toSecondsPart() method 
        System.out.println(duration.toSecondsPart()); 
    } 
}
输出:
Duration: PT10S
10

参考: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#toSecondsPart–



相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 Duration toSecondsPart() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。