日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > java >内容正文

java

duration java_Java Duration类| plusDays()方法与示例

發(fā)布時間:2025/3/11 java 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 duration java_Java Duration类| plusDays()方法与示例 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

duration java

持續(xù)時間類plusDays()方法 (Duration Class plusDays() method)

  • plusDays() method is available in java.time package.

    plusDays()方法在java.time包中可用。

  • plusDays() method is used to add the given duration in days to this Duration and return the Duration.

    plusDays()方法用于將以天為單位的給定持續(xù)時間添加到此Duration中,并返回Duration。

  • plusDays() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    plusDays()方法是一個非靜態(tài)方法,只能通過類對象訪問,如果嘗試使用類名訪問該方法,則會收到錯誤消息。

  • plusDays() method may throw an exception at the time of performing addition.

    plusDays()方法在執(zhí)行加法時可能會引發(fā)異常。

    ArithmeticException: This exception may throw when the calculated results exceed the length of this Duration.

    ArithmeticException :當(dāng)計算結(jié)果超過此Duration的長度時,可能引發(fā)此異常。

Syntax:

句法:

public Duration plusDays(long day_val);

Parameter(s):

參數(shù):

  • long day_val – represents the day value to add to this Duration.

    long day_val –表示要添加到此工期的天數(shù)。

Return value:

返回值:

The return type of this method is Duration, it returns the Duration that holds the value added the given days to this Duration.

此方法的返回類型為Duration ,它返回的Duration包含將給定天數(shù)添加到此Duration中的值。

Example:

例:

// Java program to demonstrate the example // of plusDays(long day_val) method of Durationimport java.time.*;public class PlusDaysOfDuration {public static void main(String args[]) {long days = 2;// Instantiates two Duration objectsDuration du1 = Duration.ofDays(3);Duration du2 = Duration.parse("P2DT20M");// Display du1, du2 System.out.println("du1: " + du1);System.out.println("du2: " + du2);System.out.println("days to add: " + days);System.out.println();// adds the given duration in days with this// Duration du1 and returns the Duration // i.e. here we are adding the given 2 days // with this du1 that holds the value of 3 days // i.e.( 72 hrs + 48 hrs = 120 hrs )Duration plus_val = du1.plusDays(days);// Display plus_valSystem.out.println("du1.plusDays(days): " + plus_val);// adds the given duration in days with this // Duration du2 and returns the Duration // i.e. here we are adding the given 2 days // with this du2 that holds the value of 2D:20M // i.e.( 48 hrs + 48 hrs = 96 hrs )plus_val = du2.plusDays(days);// Display plus_valSystem.out.println("du2.plusDays(days): " + plus_val);} }

Output

輸出量

du1: PT72H du2: PT48H20M days to add: 2du1.plusDays(days): PT120H du2.plusDays(days): PT96H20M

翻譯自: https://www.includehelp.com/java/duration-plusdays-method-with-example.aspx

duration java

總結(jié)

以上是生活随笔為你收集整理的duration java_Java Duration类| plusDays()方法与示例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。