Java即时类| plus()方法与示例

即时类plus()方法 (Instant Class plus() method)

Syntax:

句法:

    public Instant plus(TemporalAmount t_amt);
public Instant plus(long amt, TemporalUnit t_unit);

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

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

  • plus(TemporalAmount t_amt) method is used to add the given amount to this Instant and return the Instant.

    plus(TemporalAmount t_amt)方法用于将给定金额添加到此Instant并返回Instant。

  • plus(long amt, TemporalUnit t_unit) method is used to add the given amount in the given unit to this Instant and return the Instant.

    plus(long amt,TemporalUnit t_unit)方法用于将给定单位的给定金额添加到此Instant并返回Instant。

  • These methods may throw an exception at the time of performing addition.

    这些方法在执行加法时可能会引发异常。

    • ArithmeticException: This exception may throw when the calculated result exceeds the limit to represent this object.ArithmeticException :当计算结果超出表示此对象的限制时,可能引发此异常。
    • UnsupportedTemporalTypeException: This exception may throw when the given unit is unsupported.UnsupportedTemporalTypeException :当不支持给定单元时,可能引发此异常。
    • DateTimeException: This exception may throw when getting any error during addition.DateTimeException :在添加过程中出现任何错误时,可能引发此异常。
  • These are non-static methods and it is accessible with class objects and if we try to access these methods with the class name then we will get an error.

    这些是非静态方法,可通过类对象访问,如果尝试使用类名访问这些方法,则会收到错误消息。

Parameter(s):

参数:

  • In the first case, "plus(TemporalAmount t_amt)",

    在第一种情况下,“ plus(TemporalAmount t_amt)”

    • TemporalAmount t_amt – represents the amount to be added to this Instant.
    • TemporalAmount t_amt –表示要添加到此Instant的数量。
  • In the second case, "plus(long amt, TemporalUnit t_unit)",

    在第二种情况下,“ plus(long amt,TemporalUnit t_unit)”,

    • long amt – represents the amount in units to be added to this Instant.
    • long amt –表示要添加到此Instant的单位数量。
    • TemporalUnit t_unit – represents the unit to measure the given amount.
    • TemporalUnit t_unit –代表测量给定数量的单位。

Return value:

返回值:

In both the cases, the return type of the method is Instant,

在这两种情况下,方法的返回类型均为Instant 。

  • In the first case, it returns the Instant that holds the value added the given amount to this Instant.

    在第一种情况下,它返回包含将给定金额添加到此Instant的值的Instant。

  • In the second case, it returns the Instant that holds the value added the given amount in unit to this Instant.

    在第二种情况下,它会返回即时值,该值保存将给定值添加到此即时值中的值。

Example:

例:

// Java program to demonstrate the example 
// of plus() method of Instant
import java.time.*;
import java.time.temporal.*;
public class PlusOfInstant {
public static void main(String args[]) {
long amt = 2;
// Instantiates two Instant and
// a Duration object
Instant ins1 = Instant.parse("2006-04-03T05:10:15.00Z");
Instant ins2 = Instant.now();
Duration du = Duration.ofSeconds(2);
// Display ins1,ins2
System.out.println("Instant ins1 and ins2: ");
System.out.println("ins1: " + ins1);
System.out.println("ins2: " + ins2);
System.out.println("amt to add: " + amt);
System.out.println("du to add: " + du);
System.out.println();
// Here, this method adds the given amount
// in the given unit with this Instant and
// returns the Instant i.e. here we are
// adding 2 hours with Instant ins1
Instant plus_val = ins1.plus(amt, ChronoUnit.HOURS);
// Display plus_val
System.out.println("ins1.plus(amt,ChronoUnit.HOURS): " + plus_val);
// Here, this method adds the given amount
// with this Instant and returns the Instant 
// i.e. here we are adding 2 seconds
// with Instant ins2
plus_val = ins2.plus(du);
// Display plus_val
System.out.println("ins2.plus(du): " + plus_val);
}
}

Output

输出量

Instant ins1 and ins2: 
ins1: 2006-04-03T05:10:15Z
ins2: 2020-05-28T07:28:15.161687Z
amt to add: 2
du to add: PT2Sins1.plus(amt,ChronoUnit.HOURS): 2006-04-03T07:10:15Z
ins2.plus(du): 2020-05-28T07:28:17.161687Z

翻译自: https://www.includehelp.com/java/instant-plus-method-with-example.aspx

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

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

相关文章

计算机领域中dns是什么意思,dns错误是什么意思?dns错误要如何解决?

随着网络的普及,电脑已经成为我们生活中必不可少的物品,它可以帮助我们工作和学习以及娱乐。不过电脑在使用的过程中,常常会出现一些问题,小编觉得最常见也最让人心生烦躁的就是输入网址打开之后出现网页打不开,提示dn…

Launch Instruments

Launch Instruments 该仪器应用在Xcode应用程序,所以推出是在Xcode的最直接的方式。你也可以启动它间接地通过码头,启动,或命令行。The Instruments app lives inside the Xcode app, so the most direct way to launch it is from within Xc…

java clock计时_Java Clock类| offset()方法与示例

java clock计时Clock Class offset()方法 (Clock Class offset() method) offset() method is available in java.time package. offset()方法在java.time包中可用。 offset() method is used to generate a new Clock from the given base clock with added the given Duratio…

dataframe数据标准化处理_数据处理中的标准化、归一化究竟是什么?

关注上方“Python数据科学”,选择星标,精彩文章不会错过!今天说一个比较重要的内容,无论是在算法建模还是在数据分析都比较常见:数据归一化和标准化。开始之前,请你先把网上看到的所有相关的博客、帖子都忘…

北航计算机学院博士机试考试题,北航2015考博真题回忆及全套资料 - 考博 - 小木虫 - 学术 科研 互动社区...

我是2015年毕业的应届硕士,报考了北航经管院的博士。想写这篇文很久了,现在复试完等最后结果中,把自己一路走来的经验分享给大家。1.报名报名之前很重要的一点就是联系导师。我是研二下,快放暑假了才开始联系导师。北航一般是11月…

用了Redis里面的map和set

map的操作用 hset,hget等 set的操作有 sadd sismember等 参考下面: http://blog.csdn.net/kwsy2008/article/details/48467441

java输出不同颜色_Java设计模式-策略模式、状态模式

推荐阅读:一只Tom猫:都是“Redis惹的祸”,害我差点挂在美团三面,真是“虚惊一场”!java喵:6大面试技能树:JAVA基础JVM算法数据库计算机网络操作系统前言当代码中出现多重if-else语句或者switch语…

c++stl和std_std :: rotate()函数以及C ++ STL中的示例

cstl和stdC STL std :: rotate()函数 (C STL std::rotate() function) rotate() function is a library function of algorithm header, it is used to rotate left the elements of a sequence within a given range, it accepts the range (start, end) and a middle point,…

计算机硬盘正在工作应特别注意避免,初级计算机考试题库

计算机的初级基本*作包括基本信息栏、计算机的基础知识、五笔字型基础、*互联网的*作、常用办公外设的使用、计算机硬件的日常维护与保养和office办公工具的应用。下面是初级计算机考试题库,请参考!1.以下与信息有关的设备计算中,用于存储信息…

abap 添加alv上的工具栏的按钮_神器必会!“世界上最好的编辑器Source Insight”...

前言“Source Insight(以下简称SI)是世界上最好的编辑器”,说这句话不知道会不会出门被打呢?-_- 中国古话说得好,“文无第一,武无第二”,所以不敢说SI是最好的,但是说是“最好的之一”绝对是妥妥的。它以丰…

SLF4J with Logback in a Maven Project | Mograblog

SLF4J with Logback in a Maven Project | Mograblog

Ruby中带有示例的Hash.key?(value)方法

Hash.key?(value)方法 (Hash.key?(value) Method) In this article, we will study about Hash.key?(value) Method. The working of the method cant be assumed because its quite a different name. Let us read its definition and understand its implementa…

计算机课伤害事故的防范,体育课安全伤害事故的防范与处理

摘 要:近年来,在教育改革的背景下,学校方面特别重视体育教学这一环节。做好体育教学工作,一方面能够使学生达到强身健体的目的,另一方面能够使学生的综合素质水平得到有效提升。然而,在体育课中还会发生一些…

同一个容器实例可以同时运行在多个宿主机_从零开始学K8s: 3.什么是容器

Kubernetes使用Linux容器技术来实现应用的隔离。因此在深入学习k8s之前,我们需要先学习容器的基础知识以便更好地去理解k8s的原理机制。揭开容器的神秘面纱当一个应用只由较少数量的大组件构成时,完全可以给每个组件分配一个专用的虚拟机,以及…

__str__是什么函数_PHP str_shuffle()函数与示例

__str__是什么函数PHP str_shuffle()函数 (PHP str_shuffle() Function) str_shuffle() function is a string function and it is used to shuffle all characters randomly in the string. str_shuffle()函数是一个字符串函数,用于随机地随机排列字符串中的所有字…

SpringBoot集成RabbitMq消息队列【附源码】

1. 项目背景 要啥项目背景,就是干!!! SpringBoot版本:2.7.12 2. Rabbit MQ安装 这里讲解使用docker安装RabbitMQ,如果在windows下面安装RabbitMQ,参考下文 【笑小枫的按步照搬系列】Window…

【云栖直播】精彩推荐第3期:个性化推荐系统搭建实践

热门推荐 (1)即将直播持续集成与交付:分层自动化之UI自动化体系建设直播简介:本系列直播由阿里旗下一站式研发提效平台云效策划推出,主要为大家详细介绍阿里巴巴在持续集成和持续交付的最佳实践。 直播讲师&#xff1a…

全国计算机等级考试和cct区别,全国计算机等级考试(NCRE)和CCT的区别你了解多少?...

在大学,很多学生都在纠结,到底学什么技能在以后的就业中能够提升自己的核心竞争力。在众多等级考试中,全国计算机等级考试可以说是相对热门的考试。关于计算机等级考试,一共有两种,一类是全国高等学校计算机水平考试(C…

ensp路由器无法启动_品胜云路由器Breed刷入详细教程,技巧和注意事项,功能大增...

前面发文,介绍过品胜净音云路由器WFR101N功能,硬件配置参数,高清拆解图。主要硬件参数:闪存型号是W25Q128FVSG,容量大小是16M;内存是华邦的W9751G6KB-25,DDR2 SDRAM内存,大小64M&…

第二个冲刺期的第六天

昨天写好了购物车的功能; 今天决定开始写下订单的功能; 明天的话继续写下订单的功能; 遇到的问题:由于购物车是用session实现的,所以生成订单的话会遇到一些问题,比如说订单条目往数据库的写入。 &#xff…