溫馨提示×

Java如何獲得當(dāng)前月份

小億
128
2024-01-26 18:45:24
欄目: 編程語言

在Java中,可以使用java.time.LocalDate類來獲得當(dāng)前的月份。下面是一個示例代碼:

import java.time.LocalDate;

public class Main {
    public static void main(String[] args) {
        LocalDate currentDate = LocalDate.now();
        int currentMonth = currentDate.getMonthValue();
        System.out.println("當(dāng)前月份:" + currentMonth);
    }
}

運行以上代碼會輸出當(dāng)前的月份。

0