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–
相關用法
- Java Duration equals(Duration)用法及代碼示例
- Java Duration dividedBy(Duration)用法及代碼示例
- Java Duration minus(Duration)用法及代碼示例
- Java Duration compareTo(Duration)用法及代碼示例
- Java Duration plus(Duration)用法及代碼示例
- Java Duration abs()用法及代碼示例
- Java Duration toNanosPart()用法及代碼示例
- Java Duration hashCode()用法及代碼示例
- Java Duration from(TemporalUnit)用法及代碼示例
- Java Duration toString()用法及代碼示例
- Java Duration toSeconds()用法及代碼示例
- Java Duration toDaysPart()用法及代碼示例
- Java Duration toMinutes()用法及代碼示例
- Java Duration toNanos()用法及代碼示例
- Java Duration toMillisPart()用法及代碼示例
注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 Duration toSecondsPart() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。