java.time.Period.negated() 方法
描述
java.time.Period.negated() 方法返回此 Period 的副本,长度为 negated。
声明
以下是 java.time.Period.negated() 方法的声明。
public Period negated()
返回值
一个基于此期间的期间,其数量被否定,不为空。
异常
ArithmeticException − 如果发生数字溢出。
示例
下面的例子展示了 java.time.Period.negated() 方法的使用。
package com.tutorialspoint; import java.time.Period; public class PeriodDemo { public static void main(String[] args) { Period period = Period.ofDays(5); System.out.println(period.getDays()); Period period1 = period.negated(); System.out.println(period1.getDays()); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
5 -5