duration java

持续时间类withSeconds()方法 (Duration Class withSeconds() method)

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

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

  • withSeconds() method is used to represent this Duration with the given seconds.

    withSeconds()方法用于表示给定秒数的持续时间。

  • withSeconds() 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.

    withSeconds()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • withSeconds() method may throw an exception at the time of representing Duration with the given seconds.

    withSeconds()方法在用给定的秒数表示Duration时可能会引发异常。

    DateTimeException: This exception may throw when the given parameter is not valid.

    DateTimeException :如果给定参数无效,则可能引发此异常。

Syntax:

句法:

    public Duration withSeconds(int sec_val);

Parameter(s):

参数:

  • int sec_val – represents the seconds by which to represent this Duration.

    int sec_val –表示表示该持续时间的秒数。

Return value:

返回值:

The return type of this method is Duration, it returns Duration with the given seconds.

此方法的返回类型为Duration ,它以给定的秒数返回Duration。

Example:

例:

// Java program to demonstrate the example
// of withSeconds(int sec_val) method of Duration
import java.time.*;
public class WithSecondsfDuration {public static void main(String args[]) {// Instantiates two Duration objects
Duration du1 = Duration.ofMinutes(2);
Duration du2 = Duration.parse("P0DT1H0M");
// Display du1 and du2
System.out.println("du1: " + du1);
System.out.println("du2: " + du2);
// represents this Duration
// du1 with the given seconds
Duration with_seconds = du1.withSeconds(15);
// Display with_seconds
System.out.println("du1.withSeconds(15): " + with_seconds);
// represents this Duration
// du2 with the given seconds
with_seconds = du2.withSeconds(30);
// Display with_seconds
System.out.println("du2.withSeconds(30): " + with_seconds);
}
}

Output

输出量

du1: PT2M
du2: PT1H
du1.withSeconds(15): PT15S
du2.withSeconds(30): PT30S

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

duration java

duration java_Java Duration类| withSeconds()方法与示例相关推荐

  1. getenv java_Java System类getenv()方法及示例

    系统类getenv()方法getenv()方法在java.lang包中可用. getenv()方法用于返回键值对中当前环境变量的不可修改Map. 我们将看到什么是环境变量?环境变量是系统相关的外部命名 ...

  2. duration java_Java Duration类| 带示例的get()方法

    duration java 持续时间类get()方法 (Duration Class get() method) get() method is available in java.time pack ...

  3. duration java_Java Duration类| minusMinutes()方法与示例

    duration java 持续时间类minusMinutes()方法 (Duration Class minusMinutes() method) minusMinutes() method is ...

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

    duration java 持续时间类plusDays()方法 (Duration Class plusDays() method) plusDays() method is available in ...

  5. duration java_Java Duration类| minusMillis()方法与示例

    duration java 持续时间类minusMillis()方法 (Duration Class minusMillis() method) minusMillis() method is ava ...

  6. duration java_Java Duration类| 带示例的getUnits()方法

    duration java 持续时间类getUnits()方法 (Duration Class getUnits() method) getUnits() method is available in ...

  7. duration java_Java Duration类| 带示例的dividBy()方法

    duration java 持续时间类divideBy()方法 (Duration Class dividedBy() method) dividedBy() method is available ...

  8. duration java_Java Duration类| 带示例的multipliedBy()方法

    duration java 持续时间类multipliedBy()方法 (Duration Class multipliedBy() method) multipliedBy() method is ...

  9. duration java_Java Duration类| toNanos()方法与示例

    duration java Duration Class toNanos()方法 (Duration Class toNanos() method) toNanos() method is avail ...

最新文章

  1. 关于 AppDelegate 、UIApplication 简单的用法
  2. 利用window.navigator.userAgent判断当前是否微信内置浏览器
  3. android 刷系统,安卓10的刷机教程,教你刷好Killer的精简包
  4. 怎么找到项目中所有同名的类_26岁转行程序员的成长历程--Day03从内存层面理解类和对象...
  5. Python pandas使用
  6. php期末考试分数分布情况,考试成绩分析
  7. android 倒计时类,Android倒计时工具类
  8. HikariCP介绍
  9. 森林怎么训练野人_森林游戏怎么让野人跪下 | 手游网游页游攻略大全
  10. 一个简单的Appium测试(Python语言)
  11. Python项目:学生管理系统(数据库)
  12. Morphia DAOs
  13. Spring Boot资源获取失败:class path resource cannot be opened because it does not exist
  14. 微信公众号机器人详细教程
  15. Windows--cygwin
  16. 关于gps测量精度的分析
  17. 中国电博会(CEE):厉兵秣马治盛会 共赢天下惠展商
  18. 25.Flink监控\什么是Metrics\Metrics分类\Flink性能优化的方法\合理调整并行度\合理调整并行度\Flink内存管理\Spark VS Flink\时间机制\容错机制等
  19. 【量化】相关系数进行配对交易
  20. [NOI 2004]郁闷的出纳员

热门文章

  1. cmake 构建路径_新手必备:win10 系统下 VSCode+CMake+Clang+GCC 环境的搭建
  2. html dd自动换行,为什么我的dd里面的内容没有自动换行呢
  3. [one day one question] express 不缓存如何实现
  4. iframe关于滚动条的去除和保留
  5. php ajax实现分页效果
  6. vs.net2003无法打开.NET的Web应用服务
  7. 为什么dubbo的调用重试不建议设置成超过1
  8. property修饰关键字
  9. ASP.NET WebAPi之断点续传下载(上)
  10. 使用MJRefresh自定义下拉刷新,上拉加载动画