91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么判斷日期是否是今天

小億
360
2024-01-30 16:02:03
欄目: 編程語言

在Java中,可以使用java.util.Datejava.util.Calendar類來判斷日期是否是今天。

使用java.util.Date類的方法來判斷日期是否是今天:

import java.util.Date;

public class Main {
    public static void main(String[] args) {
        // 創建一個當前日期時間的Date對象
        Date currentDate = new Date();
        
        // 創建一個指定日期的Date對象
        Date specifiedDate = new Date(121, 2, 21); // 2021年3月21日
        
        // 判斷指定日期是否是今天
        boolean isToday = isSameDay(currentDate, specifiedDate);
        
        // 輸出結果
        System.out.println("Is the specified date today? " + isToday);
    }
    
    // 判斷兩個日期是否是同一天
    public static boolean isSameDay(Date date1, Date date2) {
        // 使用Date的getYear、getMonth和getDate方法獲取年、月、日
        int year1 = date1.getYear();
        int month1 = date1.getMonth();
        int day1 = date1.getDate();
        
        int year2 = date2.getYear();
        int month2 = date2.getMonth();
        int day2 = date2.getDate();
        
        // 判斷年、月、日是否相等
        return (year1 == year2 && month1 == month2 && day1 == day2);
    }
}

使用java.util.Calendar類的方法來判斷日期是否是今天:

import java.util.Calendar;

public class Main {
    public static void main(String[] args) {
        // 創建一個當前日期時間的Calendar對象
        Calendar currentCalendar = Calendar.getInstance();
        
        // 創建一個指定日期的Calendar對象
        Calendar specifiedCalendar = Calendar.getInstance();
        specifiedCalendar.set(Calendar.YEAR, 2021);
        specifiedCalendar.set(Calendar.MONTH, 2); // 3月
        specifiedCalendar.set(Calendar.DAY_OF_MONTH, 21);
        
        // 判斷指定日期是否是今天
        boolean isToday = isSameDay(currentCalendar, specifiedCalendar);
        
        // 輸出結果
        System.out.println("Is the specified date today? " + isToday);
    }
    
    // 判斷兩個日期是否是同一天
    public static boolean isSameDay(Calendar calendar1, Calendar calendar2) {
        // 使用Calendar的get方法獲取年、月、日
        int year1 = calendar1.get(Calendar.YEAR);
        int month1 = calendar1.get(Calendar.MONTH);
        int day1 = calendar1.get(Calendar.DAY_OF_MONTH);
        
        int year2 = calendar2.get(Calendar.YEAR);
        int month2 = calendar2.get(Calendar.MONTH);
        int day2 = calendar2.get(Calendar.DAY_OF_MONTH);
        
        // 判斷年、月、日是否相等
        return (year1 == year2 && month1 == month2 && day1 == day2);
    }
}

以上兩種方法都可以判斷指定日期是否是今天。

0
崇礼县| 德钦县| 田东县| 大田县| 鹤山市| 安庆市| 昌平区| 宣威市| 襄城县| 滦平县| 安阳县| 伊吾县| 垦利县| 西昌市| 呼图壁县| 荣昌县| 西盟| 六枝特区| 文化| 黔南| 张北县| 娱乐| 永昌县| 平昌县| 工布江达县| 武义县| 高青县| 即墨市| 自治县| 台中市| 丹凤县| 蓝山县| 元江| 二连浩特市| 禹州市| 乐业县| 沂南县| 南昌市| 古丈县| 扶沟县| 招远市|