在Java中,你可以使用java.time
包中的YearMonth
類和LocalDate
類來獲取當前月份。以下是兩種方法的示例:
方法1:使用YearMonth
類
import java.time.YearMonth;
public class Main {
public static void main(String[] args) {
YearMonth currentMonth = YearMonth.now();
System.out.println("當前月份: " + currentMonth);
}
}
方法2:使用LocalDate
類
import java.time.LocalDate;
public class Main {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
int month = currentDate.getMonthValue();
System.out.println("當前月份: " + month);
}
}
這兩種方法都會輸出當前月份。第一種方法返回一個YearMonth
對象,可以直接獲取月份。第二種方法返回一個LocalDate
對象,需要調用getMonthValue()
方法來獲取月份。