当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Period equals()用法及代码示例


Java中Period类的equals()方法用于检查两个给定的周期是否相等。

比较基于期间类型以及三年,月份和日期中的每一个。为了相等,三年,月份和日期必须分别相等。

用法:


public boolean equals(Period secondPeriod)

参数:此方法接受单个参数secondPeriod,这是另一个要比较的时间段。

返回值:如果给定的周期相等,则上述方法返回true,否则返回false。

以下示例程序旨在说明上述方法:

示例1:

// 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

示例2:

// 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://docs.oracle.com/javase/8/docs/api/java/time/Period.html#equals-java.lang.Object-



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Period equals() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。