Java中的 ChronoPeriod equals() 方法及示例
Java中ChronoPeriod 接口的equals()方法用于检查两个给定周期是否相等。
比较基于 ChronoPeriod 类型以及三年、月份和日期中的每一个。要相等,所有三年、月份和日期必须单独相等。
句法:
boolean equals(ChronoPeriod secondChronoPeriod)
参数:此方法接受单个参数secondChronoPeriod ,这是要与之比较的另一个周期。
返回值:如果给定的周期相等,则上述方法返回 true,否则返回 false。
下面的程序说明了上述方法:
方案一:
// Java code to show the period
// equals for two given periods
import java.time.*;
import java.time.chrono.*;
public class ChronoPeriodClass {
// Function to check if two given periods
// are equals or not
static boolean
checkIfEqualChronoPeriod(ChronoPeriod firstChronoPeriod,
ChronoPeriod secondChronoPeriod)
{
return firstChronoPeriod.equals(secondChronoPeriod);
}
// Driver Code
public static void main(String[] args)
{
// Given period
ChronoPeriod first = Period.ofDays(28);
ChronoPeriod second = Period.ofDays(8);
System.out.println(
checkIfEqualChronoPeriod(first, second));
}
}
输出:
false
方案二:
// Java code to show the period
// equals for two given periods
import java.time.*;
import java.time.chrono.*;
public class ChronoPeriodClass {
// Function to check if two given periods
// are equals or not
static boolean
checkIfEqualChronoPeriod(ChronoPeriod firstChronoPeriod,
ChronoPeriod secondChronoPeriod)
{
return firstChronoPeriod.equals(secondChronoPeriod);
}
// Driver Code
public static void main(String[] args)
{
// Given period
ChronoPeriod first2 = Period.ofDays(28);
ChronoPeriod second2 = Period.ofDays(28);
System.out.println(
checkIfEqualChronoPeriod(first2, second2));
}
}
输出:
true
参考:https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoPeriod.html#equals-java.lang.Object-