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