Java Duration类| isNegative()方法与示例

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

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

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

  • isNegative() method is used to check whether this Duration object holds the value of length < 0 (i.e. negative) or not but it excludes value 0.

    isNegative()方法用于检查此Duration对象是否保留length <0(即,负数)的值,但不包含值0。

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

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

  • isNegative() method does not throw an exception at the time of checking negative value.

    isNegative()方法在检查负值时不会引发异常。

Syntax:

句法:

    public boolean isNegative();

Parameter(s):

参数:

  • None

    没有

Return value:

返回值:

The return type of this method is boolean, it returns true when this Duration holds negative value otherwise it returns false.

此方法的返回类型为boolean ,如果Duration的值为负,则返回true,否则返回false。

Example:

例:

// Java program to demonstrate the example 
// of boolean isNegative() method of Duration
import java.time.*;
public class IsNegativeOfDuration {
public static void main(String args[]) {
// Instantiates two Duration objects
Duration du1 = Duration.ofHours(-10);
Duration du2 = Duration.parse("P1DT2H20M");
// Display du1 and du2
System.out.println("du1: " + du1);
System.out.println("du2: " + du2);
// checks whether the value
// of this Duration (du1) is negative
// or not i.e here it returns true because
// the value of du1 is negative
boolean status = du1.isNegative();
// Display status
System.out.println("du1.isNegative(): " + status);
// checks whether the value
// of this Duration (du2) is negative
// or not i.e here it returns false because
// the value of du2 is positive
status = du2.isNegative();
// Display status
System.out.println("du2.isNegative(): " + status);
}
}

Output

输出量

du1: PT-10H
du2: PT26H20M
du1.isNegative(): true
du2.isNegative(): false

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

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

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

相关文章

经典例题(一)

1&#xff0c;已知复数 x 6 8j 请写出它的模、实部、虚部及共轭复数的命令&#xff0c;并写出运行结果。 X 6 8j print("模为:%d"% abs(X)) print("实部为:%s"% X.real) print("虚部为:%s"% X.imag) print("共轭复数为:%s"% X.co…

asterisk拨号规则

一、前言 本文档以asterisk-1.4.32为基础写作而成&#xff0c;可能和其他版本有些区别。其中参考了一些别的书籍和文章。因为写的比较仓促&#xff0c;而且基本都是晚上写的&#xff0c;里面的内容逻辑性和语句没有仔细斟酌&#xff0c;就是想到什么写什么&#xff0c;难免有…

getseconds补0_Java Duration类| getSeconds()方法与示例

getseconds补0持续时间类getSeconds()方法 (Duration Class getSeconds() method) getSeconds() method is available in java.time package. getSeconds()方法在java.time包中可用。 getSeconds() method is used to return the number of seconds exists in this Duration. g…

递归-汉诺塔(代码、分析、汇编)

代码&#xff1a; #include <stdio.h>void hanoi(int n, char a, char b, char c) {if( n > 0 ){if( n 1 ){printf("%c -> %c\n", a, c);}else{hanoi(n-1, a, c, b);printf("%c -> %c\n", a, c);hanoi(n-1, b, a, c);}} }int main() {han…

if语句(四)

1&#xff0c;简单if示例 phones [iphone,xiaomi,huawei,smartisan] for phone in phones:if phone huawei:print(phone.upper())#将字符串的所有字母大写else:print(phone.title())#将字符串中的每个单词的首字符大写效果图如下&#xff1a; 2&#xff0c;if条件测试 ph…

welcome to my blog

转载于:https://www.cnblogs.com/jiangjun/archive/2012/10/22/2734600.html

kotlin字符串判空_Kotlin程序检查空字符串,空字符串或NULL字符串

kotlin字符串判空Given a string, we have to check whether it is an empty, blank or NULL string. 给定一个字符串&#xff0c;我们必须检查它是否为空&#xff0c;空白或NULL字符串。 Example: 例&#xff1a; Input:str ""Output:True用于在Kotlin中检查Empt…

.net中对象序列化技术浅谈 (转)

原文&#xff1a;http://blog.csdn.net/zhoufoxcn/archive/2009/03/11/3978874.aspx .net中对象序列化技术浅谈 (转&#xff09;序列化是将对象状态转换为可保持或传输的格式的过程。与序列化相对的是反序列化&#xff0c;它将流转换为对象。这两个过程结合起来&#xff0c;可…

递归-输出字符串所有的组合情况(代码、分析、汇编)

目录&#xff1a;代码&#xff1a;分析&#xff1a;汇编&#xff1a;代码&#xff1a; #include <stdio.h>/*程序描述&#xff1a;输出字符串所有的组合情况使用permutation函数进行将指定的下标值&#xff0c;与最大下标值这个范围的每个下标值进行交换每调用一次permu…

课本例子代码第四章

【例4.1】设计一个控制台应用程序&#xff0c;采用二分查找方法在给定的有序数组a中查找用户输入的值&#xff0c;并提示相应的查找结果。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace C…

一个简单的python日志服务器

一个简单的python日志服务器&#xff0c;主要目的是搜集各python logging记录的日志&#xff0c;将其简单汇总。源码如下&#xff1a; # -*- coding: utf-8 -*-Created on 2012-06-14 19:50 summary: a simple logging server. use gevent and logging modules author: JerryK…

c#中queue_C#中的Queue.Enqueue()方法示例

c#中queueC&#xff03;Queue.Enqueue()方法 (C# Queue.Enqueue() method) Queue.Enqueue() method is used to add an object/element at the end of the Queue. Queue.Enqueue()方法用于在Queue的末尾添加一个对象/元素。 Syntax: 句法&#xff1a; void Queue.Enqueue(Obj…

C#调用Web Service时的身份验证

转自&#xff1a;http://www.anqn.com/dev/vc/2010-01-23/a09122769.shtml 在项目开发&#xff0c;我们经常会使用WebService&#xff0c;但在使用WebService时我们经常会考虑以下问题&#xff1a;怎么防止别人访问我的WebService?从哪里引用我的WebService?对于第一个问题&a…

递归-计算字符串长度(代码、分析、汇编)

目录&#xff1a;代码&#xff1a;分析&#xff1a;汇编&#xff1a;代码&#xff1a; main.c #include <stdio.h>//该程序用递归计算字符串长度int strlen(const char* s) {if( s NULL ){return -1;}else if( *s \0 ){return 0;}else{return strlen(s1) 1;} }int m…

Java LinkedList void clear()方法与示例

LinkedList void clear()方法 (LinkedList void clear() method) This method is available in package java.util.Collection and here, Collection is an interface. 该方法在java.util.Collection包中可用&#xff0c;在这里&#xff0c; Collection是一个接口。 This metho…

Python-杨辉三角

在控制台输出如图所示一个8层的杨辉三角。 杨辉三角介绍&#xff1a; 每个数等于它上方两数之和 每行数字左右对称&#xff0c;由1开始逐渐变大 第n行的数字有n项&#xff0c;将n取8 def yanghui(n):l[1,1]for x in range(1,n):for a in range(x):l[a]l[a]l[a1]l.insert(0,1)…

如何向妻子解释OOD(转)

前言 此文译自CodeProject上<How I explained OOD to my wife>一文&#xff0c;该文章在Top Articles上排名第3&#xff0c;读了之后觉得非常好&#xff0c;就翻译出来&#xff0c;供不想读英文的同学参考学习。 作者(Shubho)的妻子(Farhana)打算重新做一名软件工程师(她…

不安全代码和指针资料汇编

不安全代码和指针&#xff08;C# 编程指南&#xff09;为了保持类型安全&#xff0c;默认情况下&#xff0c;C# 不支持指针运算。不过&#xff0c;通过使用 unsafe 关键字&#xff0c;可以定义可使用指针的不安全上下文。有关指针的更多信息&#xff0c;请参见主题指针类型。 注…

ffmpeg-从flv文件中提取AAC音频数据保存为文件

AAC ADTS格式协议&#xff1a; 从flv文件中提取AAC音频数据保存为文件。 如果需要详细了解AAC ADTS格式&#xff0c;可以查询文档。 原文件&#xff1a; 提取aac文件&#xff1a; main.c #include <stdio.h> #include <libavutil/log.h>> #include <lib…

Python-统计《水调歌头·明月几时有》字符出现次数。

统计《水调歌头明月几时有》字符出现次数。 明月几时有&#xff0c;把酒问青天。 不知天上宫阙&#xff0c;今夕是何年&#xff1f; 我欲乘风归去&#xff0c;又恐琼楼玉宇&#xff0c;高处不胜寒。 起舞弄清影&#xff0c;何似在人间&#xff01; 转朱阁&#xff0c;低绮户&am…