當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。