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

duration java

持续时间类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()方法用于将以天为单位的给定持续时间添加到此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()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

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

    plusDays()方法在执行加法时可能会引发异常。

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

    ArithmeticException :当计算结果超过此Duration的长度时,可能引发此异常。

Syntax:

句法:

    public Duration plusDays(long day_val);

Parameter(s):

参数:

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

    long day_val –表示要添加到此工期的天数。

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包含将给定天数添加到此Duration中的值。

Example:

例:

// Java program to demonstrate the example 
// of plusDays(long day_val) method of Duration
import java.time.*;
public class PlusDaysOfDuration {
public static void main(String args[]) {
long days = 2;
// Instantiates two Duration objects
Duration 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_val
System.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_val
System.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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541639.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Ubuntu抛弃了Untiy转向Gnome,美化之路怎么办?不用怕咱一步一步大变身!

跨平台系列汇总:http://www.cnblogs.com/dunitian/p/4822808.html#linux 常用软件安装系统软件卸载:http://www.cnblogs.com/dunitian/p/6670560.html 1.下载UnityGnome版本 https://wiki.ubuntu.com/UbuntuGNOME/GetUbuntuGNOME 2.打开终端 or CtrlAltT…

html木桶布局,CSS3如何实现图片木桶布局?(附代码)

本篇文章给大家通过代码示例介绍一下使用CSS3实现图片木桶布局的方法。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。高度相同,而宽度不一样的布局,称之为木桶布局。它有几个鲜明的特点: 每行的图片…

万用表怎么测量电池容量_万用表检测光电耦合器的常用技巧

光电耦合器又称光耦合器或光耦,它属于较新型的电子产品,已经广泛应用在彩色电视机、彩色显示器、计算机、音视频等各种控制电路中。光电耦合器的构成和原理常见的光电耦合器有 4 脚直插和 6 脚两种,它们的典型实物外形和电路符号如图 3-4所示…

c语言if else语句_查找C程序的输出(如果为else语句)| 设置1

c语言if else语句Find the output of the following programs, 查找以下程序的输出&#xff0c; Program 1) 程序1) #include <stdio.h>int main(){int x 400, y, z;if (x > 500)y 400;z 300;printf("%d %d\n", y, z);return 0;}Output 输出量 32766 …

Javascript模块化编程(二):AMD规范

这个系列的第一部分介绍了Javascript模块的基本写法&#xff0c;今天介绍如何规范地使用模块。 七、模块的规范 先想一想&#xff0c;为什么模块很重要&#xff1f; 因为有了模块&#xff0c;我们就可以更方便地使用别人的代码&#xff0c;想要什么功能&#xff0c;就加载什么模…

html侧滑菜单mui,mui侧滑菜单点击含有mui-action-menu类的控件无法实现侧滑

.mui-action-menu标题栏 菜单按钮 指定href"#id"显示与隐藏侧滑菜单html:侧滑菜单列表侧滑菜单列表2侧滑菜单列表3标题具体内容href:https://badfl.gitbooks.io/mui/content/mui-action-menu.htmlAndroid 使用代码主动去调用控件的点击事件(模拟人手去触摸控件)使用代…

hanlp 训练模型_LTP 4.0!单模型完成6项自然语言处理任务

来源|哈工大SCIR语言技术平台&#xff08;Language Technology Platform, LTP&#xff09;是哈工大社会计算与信息检索研究中心&#xff08;HIT-SCIR&#xff09;历时多年研发的一整套高效、高精度的中文自然语言处理开源基础技术平台。该平台集词法分析&#xff08;分词、词性…

typescript 学习

typescript将在不久的将来从前端大一统的趋势中脱颖而出成为主流编译器。学习ts对前端开发人员来说是不可或缺的。同时&#xff0c;也要抓紧学习es2015/6/7。ts和es6并不是对立的。而是相辅相成的。ts的竞争和打击对象实质上是babel…… 官方资料 # 官方地址&#xff1a; https…

计算机中央处理器cpu_中央处理器(CPU)| 计算机科学组织

计算机中央处理器cpu中央处理器(CPU) (Central Processing Unit (CPU)) The CPU is the brain of the computer system. It works as an administrator of a system. CPU是计算机系统的大脑。 它以系统管理员的身份工作。 All the operations within the system are supervised…

计算机应用基础专2020春,计算机应用基础(专)(专,2020春)(20200831130023).pdf

计算机应用基础(专)(专&#xff0c; 2020 春)使用 " 格式刷”按钮&#xff0c;可以进行 ___________操作。选择一项&#xff1a;a. 复制文本的格式b. 删除文本c. 复制文本d. 保持文本你的回答正确正确答案是&#xff1a;复制文本的格式在 Word 的文档中插入复杂的数学公式…

computed set 自定义参数_深入理解vmodel之自定义组件用法

根据上一篇《深入理解 v-model 之表单用法》基本对 v-model 有了比较深的理解&#xff0c;接下来我们看看它如何在自定义组件中使用。首先&#xff0c;我们知道下面两个用法等价的&#xff1a;<input v-model"msg" /><input :value"msg" input&qu…

01json转字符串

/** * json转字符串声明 */ (NSString *)jsonToString:(NSDictionary *)dic; /** * json转字符串实现 */ (NSString *)jsonToString:(NSDictionary *)dic { if(!dic){ return nil; } NSData *jsonData [NSJSONSerialization dataWithJSONObject:dic options:NSJSONWriting…

AYUSH的完整形式是什么?

AYUSH&#xff1a;阿育吠陀&#xff0c;瑜伽和自然疗法&#xff0c;乌纳尼&#xff0c;悉达多和顺势疗法 (AYUSH: Ayurvedic, Yoga and Naturopathy, Unani, Siddha and Homeopathy) AYUSH is an abbreviation of Ayurvedic, Yoga and Naturopathy, Unani, Siddha, and Homeopa…

大班科学电子计算机,计算器教案

计算器的认识和简单应用教学内容&#xff1a;义务教育六年制小学第九册第二单元第42页。教学目标&#xff1a;1、通过学生自主探究&#xff0c;掌握计算器的使用方法&#xff0c;并能够用计算器进行简单的计算。2、借助计算器解决生活中的数学问题、探索数学规律&#xff0c;体…

arraylist能否接收强转类型_ArrayList 源码解析

点击上方"IT牧场"&#xff0c;选择"设为星标"技术干货每日送达&#xff01;前言 JDK源码解析系列文章&#xff0c;都是基于JDK8分析的&#xff0c;虽然JDK14已经出来&#xff0c;但是JDK8我还不会&#xff0c;我…类图 实现了RandomAccess接口&#xff0c;…

exit c+_C / C ++中的exit(0)vs exit(1)与示例

exit cexit() is a library function in C/C programming language, it is used to terminate the calling process (function) immediately i.e. we can say it is used for the normal program termination and also perform the several cleanup steps. exit()是C / C 编程语…

校园计算机网络系统,校园计算机网络系统

一、校园网的基本概念基本功能&#xff1a;数据交换、资源共享&#xff0c;这里所指的数据包括各种信息&#xff0c;基本组成和结构&#xff1a;基本网络由网络网络的分类&#xff1a;有多种分类方法&#xff0c;按规模可分为局域网、区域网、&127;广域网。局域网服务范围一…

mc有什么红石机器人_我的世界10月考试!来测测你的MC成绩吧~

考试规则&#xff1a;本次考试为闭卷考试&#xff0c;考生需要在30分钟内完成试卷。试卷总分为100分&#xff0c;其中包括单项选择题50分&#xff0c;多项选择题20分&#xff0c;判断题30分。考试内容包括《我的世界》手游1.11.0及以上版本在不添加任何模组的情况下的所有游戏内…

130、 Android OkHttp完全解析(转载)

完全解析&#xff1a;http://blog.csdn.net/lmj623565791/article/details/47911083 从原理角度解析http文件上传 http://blog.csdn.net/lmj623565791/article/details/23781773 https://github.com/hongyangAndroid/okhttputils

json转string示例_C.示例中的String.Copy()方法

json转string示例C&#xff03;String.Copy()方法 (C# String.Copy() Method) String.Copy() method is used to copy a string to new string object, it returns a new instance of String with the same value as given string. String.Copy()方法用于将字符串复制到新的字符…