java.time.Period.equals() 方法
描述
java.time.Period.equals() 方法检查此 Period 是否等于指定的 Period。
声明
以下是 java.time.Period.equals() 方法的声明。
public int equals(Period otherPeriod)
参数
otherPeriod − 另一个Period,null返回false。
返回值
如果另一个 Period 等于这个 Period 则为 true。
示例
下面的例子展示了 java.time.Period.equals() 方法的使用。
package com.tutorialspoint; import java.time.Period; public class PeriodDemo { public static void main(String[] args) { Period period = Period.ofDays(5); Period period1 = Period.ofDays(6); System.out.println(period.equals(period1)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
false