溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java Calendar類工作日計算的代碼復(fù)用與模塊化

發(fā)布時間:2024-08-10 11:19:27 來源:億速云 閱讀:80 作者:小樊 欄目:編程語言

要實(shí)現(xiàn)工作日計算的代碼復(fù)用與模塊化,可以將代碼封裝成一個單獨(dú)的工具類,供其他類調(diào)用。以下是一個示例代碼:

工作日計算工具類:

import java.util.Calendar;

public class WorkdayCalculator {

    public static int calculateWorkdays(Calendar startDate, Calendar endDate) {
        int workdays = 0;
        
        while (startDate.before(endDate) || startDate.equals(endDate)) {
            if (startDate.get(Calendar.DAY_OF_WEEK) != Calendar.SATURDAY && startDate.get(Calendar.DAY_OF_WEEK) != Calendar.SUNDAY) {
                workdays++;
            }
            startDate.add(Calendar.DAY_OF_MONTH, 1);
        }
        
        return workdays;
    }
}

在其他類中調(diào)用工作日計算工具類:

import java.util.Calendar;

public class Main {

    public static void main(String[] args) {
        Calendar startDate = Calendar.getInstance();
        startDate.set(2022, Calendar.JANUARY, 1);
        
        Calendar endDate = Calendar.getInstance();
        endDate.set(2022, Calendar.JANUARY, 31);
        
        int workdays = WorkdayCalculator.calculateWorkdays(startDate, endDate);
        System.out.println("Workdays between " + startDate.getTime() + " and " + endDate.getTime() + ": " + workdays);
    }
}

通過將工作日計算邏輯封裝在一個單獨(dú)的工具類中,可以實(shí)現(xiàn)代碼的復(fù)用和模塊化,提高代碼的可維護(hù)性和可讀性。其他類只需調(diào)用工作日計算工具類的方法即可完成工作日計算,而無需重復(fù)編寫計算邏輯。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI